Shutup.css

Hide comments from different sites

当前为 2014-06-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Shutup.css
  3. // @namespace http://stevenf.com/shutupcss/
  4. // @description Hide comments from different sites
  5. // @include http*
  6. // @version 0.0.1.20140603200013
  7. // ==/UserScript==
  8.  
  9. var link=document.createElement("link");
  10. link.setAttribute("rel","stylesheet");
  11. link.setAttribute("type","text/css");
  12. link.setAttribute("href","http://stevenf.com/shutup/shutup-latest.css");
  13. var head=document.getElementsByTagName("head")[0];
  14. head.appendChild(link);