我试图为Greasemonkey编写一个小脚本,但它没有用,因为我没什么经验。
必须在(背景:#e8e8e8;)上用值(背景:#fff;)替换所有属性CSS。
答案 0 :(得分:3)
// ==UserScript==
// @name Background color change
// @namespace https://website here
// @description Changes the background color
// @version 1
// @grant none
// ==/UserScript==
document.body.style.background = "white";
答案 1 :(得分:2)
只需添加,
GM_addStyle("body { background-color: #fff !
important; }");
可能不需要重要。