// ==UserScript== // @name 国内网站去黑白 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 大概可以匹配所有网站吧,已测试bilibili、英雄联盟官网 // @author Qiluo // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('*').forEach((e)=> { //查找所有节点,匹配使网页变灰的节点,并使用内联样式覆盖 if(getComputedStyle(e).filter.search('grayscale')!=-1){ e.setAttribute('style', 'filter:none !important'); } }) // Your code here... })();