Shutup.css

Hide comments from different sites

2014/06/11のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name           Shutup.css
// @namespace      http://stevenf.com/shutupcss/
// @description    Hide comments from different sites
// @include        http*
// @exclude        *://greasyfork.org/forum/*
// @version        0.0.2
// ==/UserScript==

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