Last active
September 9, 2024 07:39
-
-
Save MulverineX/e159ff9a2e7208cbb049980e85f709c5 to your computer and use it in GitHub Desktop.
This file contains 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.16 | |
// @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