Greasy Fork

Greasy Fork is available in English.

WPS护眼模式

将网页背景色设置为WPS护眼模式豆沙色,文字颜色设置为黑色

当前为 2023-07-27 提交的版本,查看 最新版本

// ==UserScript==
// @name         WPS护眼模式
// @namespace    yournamespace
// @version      1.0
// @description  将网页背景色设置为WPS护眼模式豆沙色,文字颜色设置为黑色
// @match        *://*/*
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('body { background-color: #CCE8CF !important; color: black !important; }');
})();