RemoveGrayScale

force remove grayscale!

当前为 2016-10-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name RemoveGrayScale
  3. // @namespace http://tummedia.com/
  4. // @version 0.2
  5. // @description force remove grayscale!
  6. // @author BonesBoom
  7. // @match http://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var x = document.createElement("style");
  14. var t = document.createTextNode("* {filter: grayscale(0%)!important;}");
  15. x.appendChild(t);
  16. document.head.appendChild(x);
  17. })();

QingJ © 2025

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