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);
})();