Greasy Fork

Greasy Fork is available in English.

任意网站去黑白

去除任意网站的黑白样式

当前为 2022-12-02 提交的版本,查看 最新版本

// ==UserScript==
// @name 任意网站去黑白
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 去除任意网站的黑白样式
// @author share121
// @match *://*/*
// @license MIT
// @grant none
// ==/UserScript==
document.querySelector('head').appendChild(document.createElement("style")).innerText='*{filter:grayscale(0%)!important;-webkit-filter:grayscale(0%)!important;-moz-filter:grayscale(0%)!important;-ms-filter:grayscale(0%)!important;-o-filter:grayscale(0%)!important;filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0)!important;}'