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

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

目前為 2018-08-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Slightly darken all website BG-color - Body/HTML #ccc
// @namespace   english
// @description Slightly darken all website BG-color - Body/HTML #ccc  build
// @include     http*://*
// @exclude      http*://*google*/search?*
// @exclude      http*://*slack.com*
// @exclude      http*://*greasyfork.org*
// @exclude      http*://*mail.google.com*
// @exclude      http*://*panel.dreamhost.com*
// @exclude      http*://*reddit.com*
// @exclude      http*://*wikipedia.org*
// @exclude      http*://*stealth-servers.com.au*
// @exclude      http*://*keep.google.com*
// @exclude      http*://*hangouts.google.com*
// @exclude      *chrome://newtab*
// @exclude      *chrome://*
// @exclude      
// @version     1.13
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==



var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '   body,html,html body{background:#ccc !important; background-color:#ccc !important;background-image:none important ; }    ';
document.getElementsByTagName('head')[0].appendChild(style);