RemoveGrayScale

force remove grayscale!

目前為 2016-10-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name         RemoveGrayScale
// @namespace    http://tummedia.com/
// @version      0.1
// @description  force remove grayscale!
// @author       You
// @match        http://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    
    var x = document.createElement("style");
    var t = document.createTextNode("* {filter: grayscale(0%)!important;}");
    x.appendChild(t);
    document.head.appendChild(x);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址