Shutup.css

Hide comments from different sites

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址