Slightly darken all website BG-color - Body/HTML #ccc

Slightly darken all website BG-color - Body/HTML #ccc build

当前为 2018-08-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Slightly darken all website BG-color - Body/HTML #ccc
  3. // @namespace english
  4. // @description Slightly darken all website BG-color - Body/HTML #ccc build
  5. // @include http*://*
  6. // @exclude http*://*google*/search?*
  7. // @exclude http*://*slack.com*
  8. // @exclude http*://*greasyfork.org*
  9. // @exclude http*://*mail.google.com*
  10. // @exclude http*://*panel.dreamhost.com*
  11. // @exclude http*://*reddit.com*
  12. // @exclude http*://*wikipedia.org*
  13. // @exclude http*://*stealth-servers.com.au*
  14. // @exclude http*://*keep.google.com*
  15. // @exclude http*://*hangouts.google.com*
  16. // @exclude *chrome://newtab*
  17. // @exclude *chrome://*
  18. // @exclude
  19. // @version 1.13
  20. // @run-at document-start
  21. // @grant GM_addStyle
  22. // ==/UserScript==
  23.  
  24.  
  25.  
  26. var style = document.createElement('style');
  27. style.type = 'text/css';
  28. style.innerHTML = ' body,html,html body{background:#ccc !important; background-color:#ccc !important;background-image:none important ; } ';
  29. document.getElementsByTagName('head')[0].appendChild(style);
  30.  
  31.  
  32.