// ==UserScript== // @name 灰度调整 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 黑白网页恢复彩色 // @author tetu137 // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // @license AGPL License // @downloadURL none // ==/UserScript== (function () { "use strict"; let html = document.documentElement; html.classList.remove("gray",'itcauecng'); console.log("123已执行"); })();