// ==UserScript== // @name 任意网站去黑白 // @namespace http://tampermonkey.net/ // @version 7.1 // @description 去除任意网站的黑白样式 // @author share121 // @match *://*/* // @match * // @license MIT // @grant none // @homepageURL https://greasyfork.org/zh-CN/scripts/455866 // @supportURL https://greasyfork.org/zh-CN/scripts/455866/feedback // @run-at document-start // @downloadURL none // ==/UserScript== setInterval(function () { document.querySelectorAll("*").forEach(function (e) { var s = getComputedStyle(e); e.style.setProperty( "filter", s.filter && s.filter.replace(/grayscale\(.*?\)/g, "grayscale(0)"), "important" ); e.style.setProperty( "-webkit-filter", s.webkitFilter && s.webkitFilter.replace(/grayscale\(.*?\)/g, "grayscale(0)"), "important" ); }); }, 0);