Dark Mode

Enable Dark Mode for all websites

// ==UserScript==
// @name         Dark Mode
// @version      0.1
// @description  Enable Dark Mode for all websites
// @author       RaghavP
// @match        *://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @namespace https://greasyfork.org/users/807263
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function() {
        //invert the filter
        document.querySelector('html').style.filter = 'invert(1)';
    };
})();