Greasy Fork

Greasy Fork is available in English.

强制彩色

强制所有网站使用彩色

当前为 2022-11-30 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.documentElement.style.filter = 'grayscale(0)';
})();