Shutup.css

Hide comments from different sites

当前为 2017-07-08 提交的版本,查看 最新版本

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