Greasy Fork 支持简体中文。

恢复彩色

改为彩色

// ==UserScript==
// @name        恢复彩色
 
// @namespace   none
 
// @description 改为彩色
 
// @author      bz2021// ==UserScript==
// @name        恢复彩色
 
// @namespace   none
 
// @description 改为彩色

// @require      https://code.jquery.com/jquery-1.12.4.min.js
 
// @author      bz2021
// @version     1.0
// @license MIT
 
// @match       *://*
// ==/UserScript==
 
(function () {
 
    $(document).ready(function () {
 
        document.querySelector("html").style.filter = "grayscale(0)";
 
    });
 
})();
// @version     1.0
// @license MIT
 
// @match       *://*
// ==/UserScript==
 
(function () {
 
    $(document).ready(function () {
 
        document.querySelector("html").style.filter = "grayscale(0)"
 
    });
 
})();