Inverted Webpage

...

当前为 2019-06-08 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Inverted Webpage
  3. // @namespace http://lolno.com/
  4. // @version 0.1
  5. // @description ...
  6. // @author Dobby233Liu
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. document.body.style.filter="invert(100%)";
  16. document.body.style.webkitFilter="invert(100%)"; // for images
  17. })();