Last active
July 11, 2023 18:17
-
-
Save ChandanShakya/864e270815c351a4adc9efc424d87288 to your computer and use it in GitHub Desktop.
Stripped Dark Reader UserScript (Global Dark Mode)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Dark Reader (Unofficial) | |
// @icon https://darkreader.org/images/darkreader-icon-256x256.png | |
// @namespace DarkReader | |
// @description Inverts the brightness of pages to reduce eye strain | |
// @version 4.7.15 | |
// @author https://github.com/darkreader/darkreader#contributors | |
// @homepageURL https://darkreader.org/ | https://github.com/darkreader/darkreader | |
// @run-at document-end | |
// @grant none | |
// @include http* | |
// @require https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js | |
// @noframes | |
// ==/UserScript== | |
DarkReader.enable({ | |
brightness: 100, | |
contrast: 100, | |
sepia: 0 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment