blob: 7fcd98afc9504d5f70a596ce82fa452f5561d1a3 (
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
31
32
33
34
35
36
|
// ==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 *://search.adast.dk/*
// @exclude *://s.adast.dk/*
// @exclude *://cloud.adast.dk/*
// @exclude *://tv.adast.dk/*
// @exclude *://trello.com/*
// @exclude *://conversejs.org/*
// @exclude *://mov.im/*
// @require https://cdn.jsdelivr.net/npm/darkreader/darkreader.min.js
// @noframes
// ==/UserScript==
DarkReader.enable({
brightness: 100,
contrast: 100,
sepia: 0
});
|