// ==UserScript== // @name 除去黑白滤镜 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 解决黑白滤镜 // @author Jacky // @match *://*/* // @icon // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; let html=document.getElementsByTagName('html'); html[0].style.WebkitFilter='none'; })();