Invert pages
当前为
// ==UserScript==
// @name Inverted Webpage
// @namespace http://lolno.com/
// @version 0.2
// @description Invert pages
// @author Dobby233Liu
// @match *://*/*
// @match chrome-extension://*/*
// @match moz-extension://*/*
// @grant none
// @run-at document-body
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.body.style.filter="invert(100%)";
document.body.style.webkitFilter="invert(100%)"; // for images
})();