Shutup.css

Hide comments from different sites

Ajankohdalta 12.5.2014. Katso uusin versio.

// ==UserScript==
// @name           Shutup.css
// @namespace      http://stevenf.com/shutupcss/
// @description    Hide comments from different sites
// @include        http*
// @version 0.0.1.20140512180246
// ==/UserScript==

var link=document.createElement("link");
link.setAttribute("rel","stylesheet");
link.setAttribute("type","text/css");
link.setAttribute("href","http://stevenf.com/pages/shutup/shutup-latest.css");
var head=document.getElementsByTagName("head")[0];
head.appendChild(link);