Inverted Webpage

Invert pages

Stan na 08-06-2019. Zobacz najnowsza wersja.

// ==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
})();