🏠 

Greasy Fork is available in English.

自定义网页背景色-深黑色

自定义网页背景色,优酷,555视频等,配合谷歌浏览器设置-自定义网页背景色使用。


安装此脚本?
// ==UserScript==
// @name         自定义网页背景色-深黑色
// @namespace
// @version      1
// @description  自定义网页背景色,优酷,555视频等,配合谷歌浏览器设置-自定义网页背景色使用。
// @author       wugeng-ChatGPT
// @match        https://v.qq.com/*
// @match              *://*555*.*/*
// @match              *://*5dy*.*/*
// @match              *://fskc*.*/*
// @match              *://*.youku.*/*
// @match              *://bluesky-soft.com/*
// @match              *://yandex.com/*
// @match              *://learn.microsoft.com/*
// @match              *://github.com/*
// @match              *://movie.douban.com/annual/*
// @license MIT
// @grant        GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// 在此处更改所需的背景颜色
const backgroundColor = '#1E1E1E';
// 添加样式
GM_addStyle(`body { background-color: ${backgroundColor} !important; }`);
})();