b站滤镜消除

随意添加

当前为 2020-04-03 提交的版本,查看 最新版本

// ==UserScript==
// @name         b站滤镜消除
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  随意添加
// @author       aotmd
// @match        https://www.bilibili.com/
// @match        https://ncov.dxy.cn/*
// @grant        none
// ==/UserScript==

(function() {
    function addStyle(rules) {
        var styleElement = document.createElement('style');
        styleElement.type = 'text/css';
        document.getElementsByTagName('head')[0].appendChild(styleElement);
        styleElement.appendChild(document.createTextNode(rules));
    }
    addStyle('html {filter: grayscale(0%)!important;}');
})();

QingJ © 2025

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