Greasy Fork 还支持 简体中文。

Inverted Webpage

Invert pages

目前為 2019-06-09 提交的版本,檢視 最新版本

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