Userscripts-mirror WideScreen Dark and Gray (USw) v.11

Custom Widescreen CSS theme for userscripts.org

  1. (function () {
  2.  
  3. // ==UserScript==
  4. // @name Userscripts-mirror WideScreen Dark and Gray (USw) v.11
  5. // @namespace https://userscripts.org/users/5161
  6. // @icon http://www.gravatar.com/avatar/317bafeeda69d359e34f813aff940944?r=PG&s=48&default=identicon
  7. // @description Custom Widescreen CSS theme for userscripts.org
  8. // @copyright 2011+, decembre (http://userscripts.org/users/5161)
  9. // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
  10. // @version 11.05
  11.  
  12. // @homepage http://userscripts.org/scripts/show/182721
  13.  
  14. // @include https://userscripts.org/*
  15. // @include https://userscripts-mirror.org/*
  16. // @include https://userscripts.org:8080/*
  17.  
  18. //
  19. // @require https://greasyfork.org/libraries/GM_setStyle/0.0.15/GM_setStyle.js
  20. // @resource css https://pastebin.com/raw/CjKM1bnC
  21. //
  22. // @grant GM_getResourceText
  23. //
  24. // ==/UserScript==
  25.  
  26. let styleNode = GM_setStyle({
  27. data: GM_getResourceText("css")
  28. });
  29.  
  30. })();