🏠 Home 

黑白色网站

让你所浏览的网站变为黑白色!


Install this script?
  1. // ==UserScript==
  2. // @name 黑白色网站
  3. // @version 0.1
  4. // @description 让你所浏览的网站变为黑白色!
  5. // @author 袁煜914
  6. // @match *://*/*
  7. // @grant GM_addStyle
  8. // @run-at document-start
  9. // @namespace https://greasyfork.org/users/474333
  10. // ==/UserScript==
  11. (function() {
  12. GM_addStyle("* {filter: grayscale(100%);}");
  13. //GM_addStyle("* html { -webkit-filter: grayscale(100%);-moz-filter: grayscale(100%);-ms-filter: grayscale(100%);-o-filter: grayscale(100%);filter: grayscale(100%);}");
  14. })();