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*
// @version 1.5
// @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);