Skip to content

Instantly share code, notes, and snippets.

@ChandanShakya
Last active July 11, 2023 18:17
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ChandanShakya/864e270815c351a4adc9efc424d87288 to your computer and use it in GitHub Desktop.
Save ChandanShakya/864e270815c351a4adc9efc424d87288 to your computer and use it in GitHub Desktop.
Stripped Dark Reader UserScript (Global Dark Mode)
// ==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