WPS护眼模式

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

  1. // ==UserScript==
  2. // @name WPS护眼模式
  3. // @namespace yournamespace
  4. // @version 1.0
  5. // @description 将网页背景色设置为WPS护眼模式豆沙色,文字颜色设置为黑色
  6. // @match *://*/*
  7. // @grant GM_addStyle
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. GM_addStyle('body { background-color: #CCE8CF !important; color: black !important; }');
  15. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址