Custom CSS Loader

userscript that loads custom css on any webpage

  1. // ==UserScript==
  2. // @name Custom CSS Loader
  3. // @namespace ,
  4. // @include https://*/*
  5. // @include http://*/*
  6. // @author ogmicco
  7. // @version 1.1
  8. // @description userscript that loads custom css on any webpage
  9. // @license MIT
  10. // @resource CUSTOM_CSS
  11. // @grant GM_addStyle
  12. // @grant GM_getResourceText
  13. // @match *://*/*
  14. // @run-at document-start
  15. // ==/UserScript==
  16.  
  17. var cssTxt = GM_getResourceText ("CUSTOM_CSS");
  18. console.log(cssTxt);
  19. GM_addStyle (cssTxt);

QingJ © 2025

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