Greasy Fork

恢复灰色网页原始色彩

恢复灰色网页原始色彩。

目前为 2022-12-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         恢复灰色网页原始色彩
// @namespace    http://tampermonkey.net/
// @version      0.5
// @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.html.getAttribute("class")
    if (c) {
        c2 = c2.replaceAll("big-event-gray", " ")
        document.body.removeAttribute("class")
        document.body.setAttribute("class", c2) 
    }

})();