// ==UserScript== // @name 黑白网页恢复彩色 // @namespace http://tampermonkey.net/ // @version 0.2 // @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已执行"); })();