remove gray

移除灰色

// ==UserScript==
// @name         remove gray
// @namespace    haxif
// @version      0.2
// @description  移除灰色
// @author       Frost
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(() => {
        if(document.getElementsByClassName("gray").length>0)
        {
            document.getElementsByClassName("gray")[0].className = "";
        }
        document.getElementsByTagName('html')[0].style['-webkit-filter']='none';
    }, 1000)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址