// ==UserScript== // @name 彩色 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 黑白变彩色 // @author You // @match * // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com // @grant none // @license AGPL License // @downloadURL none // ==/UserScript== (function() { 'use strict'; let style = document.createElement("style"); style.innerHTML = "*{filter: none !important}"; document.head.appendChild(style); // Your code here... })();