Shutup.css

Hide comments from different sites

Verze ze dne 12. 05. 2014. Zobrazit nejnovější verzi.

  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.20140512180246
  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/pages/shutup/shutup-latest.css");
  13. var head=document.getElementsByTagName("head")[0];
  14. head.appendChild(link);