-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicy-veins.com.user.js
More file actions
24 lines (22 loc) · 858 Bytes
/
Copy pathicy-veins.com.user.js
File metadata and controls
24 lines (22 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ==UserScript==
// @name (KTN) icy-veins.com
// @description (KTN) icy-veins.com
// @author ktnjared
// @version 20250217
// @run-at document-start
// @grant GM_addStyle
// @icon https://www.google.com/s2/favicons?sz=64&domain=icy-veins.com
// @homepageURL https://github.com/ktnjared/userscripts/
// @downloadURL https://github.com/ktnjared/userscripts/raw/refs/heads/main/icy-veins.com.user.js
// @updateURL https://github.com/ktnjared/userscripts/raw/refs/heads/main/icy-veins.com.user.js
// @match *://*.icy-veins.com/*
// @match *://icy-veins.com/*
// ==/UserScript==
// invert colors to generate "light mode"
GM_addStyle(`
"html {filter: invert(100%) !important;}"
`);
// un-invert images to ensure they show normal colors
GM_addStyle(`
"img,svg,video {filter: invert(100%) !important;}"
`);