Shutup.css

Hide comments from different sites

Versão de: 08/07/2017. Veja: a última versão.

// ==UserScript==
// @name           Shutup.css
// @namespace      http://stevenf.com/shutupcss/
// @description    Hide comments from different sites
// @include        http*
// @exclude        *://greasyfork.org/forum/*
// @version        0.0.3
// ==/UserScript==

var link=document.createElement("link");
link.setAttribute("rel","stylesheet");
link.setAttribute("type","text/css");
link.setAttribute("href","https://rickyromero.com/shutup/updates/shutup.css");
var head=document.getElementsByTagName("head")[0];
head.appendChild(link);