Greasy Fork

国内网站去黑白

功能是取消掉国内网站的阴间黑白滤镜,还我彩色世界!大概可以匹配所有网站吧,已测试bilibili、英雄联盟官网。

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

// ==UserScript==
// @name         国内网站去黑白
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  功能是取消掉国内网站的阴间黑白滤镜,还我彩色世界!大概可以匹配所有网站吧,已测试bilibili、英雄联盟官网。
// @author       Qiluo
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll('*').forEach((e)=> {    //查找所有节点,匹配使网页变灰的节点,并使用内联样式覆盖
        if(getComputedStyle(e).filter.search('grayscale')!=-1){
           e.setAttribute('style', 'filter:none !important');
        }
    })
    // Your code here...
})();