// ==UserScript== // @name 强制彩色 // @namespace https://3never.life/ // @version 1.0 // @description 强制所有网站使用彩色 // @author 3never // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.documentElement.style.filter = 'grayscale(0)'; })();