Greasy Fork is available in English.
恢复灰色网页原始色彩。
// ==UserScript==
// @name 恢复灰色网页原始色彩
// @namespace http://tampermonkey.net/
// @version 0.9
// @description 恢复灰色网页原始色彩。
// @author 周怡
// @include *
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license 周怡
// ==/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")
if (c) {
c = c.replaceAll("big-event-gray", " ")
document.body.removeAttribute("class")
document.body.setAttribute("class", c)
}
let c2 = document.documentElement.getAttribute("class")
if (c2) {
c2 = c2.replaceAll("big-event-gray", " ")
document.documentElement.removeAttribute("class")
document.documentElement.setAttribute("class", c2)
}
})();