// ==UserScript== // @name 恢复灰色网页原始色彩 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 恢复灰色网页原始色彩。 // @author 周怡 // @include * // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license 周怡 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... console.log("去除灰色") //通用去除灰色" var style = document.createElement("style"); style.type = "text/css"; style.innerHTML = "html{filter: none!important;}"; window.document.head.appendChild(style); //去除百度灰色 let c = document.body.getAttribute("class") c = c.replaceAll("big-event-gray", " ") document.body.removeAttribute("class") document.body.setAttribute("class", c) })();