Last active
January 14, 2025 02:55
-
-
Save mitry/e212125eded8e519bc2ccecbfaf086d7 to your computer and use it in GitHub Desktop.
Dark Introvert UserScript
This file contains hidden or 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 Introvert | |
| // @namespace https://viayoo.com/ | |
| // @version 0.3 | |
| // @description fastest and simplest dark theme invertor. | |
| // @author mitry | |
| // @run-at document-start | |
| // @grant GM_addStyle | |
| // @match https://ru.m.wiktionary.org/w/* | |
| // @match https://pda.tv.yandex.ru/* | |
| // @exclude https://pda.tv.yandex.ru/program/* | |
| // @match https://yandex.ru/collections/* | |
| // @match https://yandex.ru/turbo/* | |
| // @match https://www.securitylab.ru/* | |
| // @match https://jsbin.com/* | |
| // @match https://4pda.to/* | |
| // @match https://qna.habr.com/* | |
| // @match https://lifehacker.ru/* | |
| // @match https://theoryandpractice.ru/* | |
| // @match https://naked-science.ru/* | |
| // @match https://nplus1.ru/* | |
| // @match https://hightech.fm/* | |
| // @match *://sdelaysam-svoimirukami.ru/* | |
| // @match *://vechnayamolodost.ru/* | |
| // @match https://burninghut.ru/* | |
| // @match https://guns.allzip.org/* | |
| // @match https://www.morehod.ru/forum/* | |
| // @match https://lastday.club/* | |
| // @match https://forum.igkt.net/* | |
| // @match https://mysku.club/* | |
| // @match https://www.ixbt.com/live/* | |
| // @exclude https://www.ixbt.com/*.amp.html | |
| // @match https://www.ferra.ru/* | |
| // @match https://*.warandpeace.ru/* | |
| // @match https://2beeg.me/* | |
| // @match https://*.turbopages.org/* | |
| // @match https://*.mediawiki.org/* | |
| // @match https://www.instructables.com/* | |
| // @match https://www.diigo.com/* | |
| // @match https://openuserjs.org/* | |
| // @match https://greasyfork.org/* | |
| // @match https://sleazyfork.org/* | |
| // @match https://www.tampermonkey.net/* | |
| // @match https://beautifytools.com/* | |
| // @match https://m.apkpure.com/* | |
| // @match https://apkpure.com/* | |
| // @match https://apkpure.ph/* | |
| // @match https://apkcombo.com/* | |
| // @match https://www.apkmirror.com/* | |
| // @match https://apkflash.com/* | |
| // @match https://f-droid.org/* | |
| // @match https://*.f-droid.org/* | |
| // @match https://saved.io/* | |
| // @match https://2ip.ru/* | |
| // @match https://2ip.io/* | |
| // @match https://lightaudio.ru/* | |
| // @match https://ria.ru/* | |
| // @match https://www.kommersant.ru/* | |
| // @match https://www.fontanka.ru/* | |
| // @match https://www.rbc.ru/* | |
| // @match https://notes.mail.ru/* | |
| // @match https://librusec.ucoz.de/forum/* | |
| // @match https://www.turboimagehost.com/p/*.html | |
| // @match https://rus.hitmotop.com/* | |
| // ==/UserScript== | |
| GM_addStyle(` | |
| :root { | |
| /* color-scheme: dark; */ | |
| filter:invert(0.9) hue-rotate(180deg) sepia(10%); | |
| } | |
| img, video, iframe, svg, html>header { | |
| filter:invert(1) hue-rotate(180deg) sepia(0); | |
| } | |
| p>img,p>svg { background-color: silver; } | |
| `) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment