Slightly darken all website BG-color - Body/HTML #ccc build
目前為
// ==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 http*://*calendar.google.com/calendar*
// @version 1.17
// @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 ; } html body.init{background:#2b2b2b !important ;background-color:#2b2b2b !important ;} ';
document.getElementsByTagName('head')[0].appendChild(style);