您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自定义网页背景色,优酷,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; }`); })();