// ==UserScript== // @name 强制彩色 // @namespace https://3never.life/ // @version 1.0.1 // @description 强制所有网站使用彩色 // @author 3never // @match *://*/* // @icon https://i2.100024.xyz/2022/11/30/ukf7tm.webp // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.documentElement.style.filter = 'grayscale(0)'; })();