Greasy Fork is available in English.

Inverted Webpage

Invert pages

08.06.2019 itibariyledir. En son verisyonu görün.

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