Inverted Webpage

Invert pages

2019-06-08 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name         Inverted Webpage
// @namespace    http://lolno.com/
// @version      0.1
// @description  Invert pages
// @author       Dobby233Liu
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.body.style.filter="invert(100%)";
    document.body.style.webkitFilter="invert(100%)"; // for images
})();