// ==UserScript== // @name 任意网站去黑白 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 去除任意网站的黑白样式 // @author share121 // @match *://*/* // @license MIT // @grant none // @downloadURL none // ==/UserScript== document.querySelector('head').appendChild(document.createElement("style")).innerText='*{filter:grayscale(0%)!important;-webkit-filter:grayscale(0%)!important;-moz-filter:grayscale(0%)!important;-ms-filter:grayscale(0%)!important;-o-filter:grayscale(0%)!important;filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0)!important;}'