summaryrefslogtreecommitdiff
path: root/.config/qutebrowser/greasemonkey/darkreader.js
blob: 9ea21398fa309435adcb6a0f8ec3a8c8417c4d8c (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
30
// ==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        *://*translate*/*
// @exclude        *://*.thomann.de/*
// @exclude        *://*.adast.xyz/*
// @require       https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js
// @noframes
// ==/UserScript==

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