summaryrefslogtreecommitdiff
path: root/.config/qutebrowser/greasemonkey/disabled/darkreader.js
blob: dccd3f00bd9a020b4a68f9903410e196d6db3db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// ==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*
// @include       qute*
// @exclude        *://discord.com/*
// @exclude        *://github.com/*
// @exclude        *://*sr.ht*/*
// @exclude        *://invidious.*
// @exclude        *://yewtu.be/*
// @exclude        *://teddit.*
// @exclude        *://search.adast.xyz/*
// @exclude        *://translate.bus-hit.me/*
// @require       https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js
// @noframes
// ==/UserScript==

DarkReader.enable({
    brightness: 100,
    contrast: 100,
    sepia: 0
});