Ask HN: Simple open source to remove the bright background on a web page?

2 9o1d 3 6/1/2025, 10:37:21 PM
I don't want to install complex plugins in the browser, because they get access to my data. I want to build it myself, but I have no idea.

Comments (3)

willcate · 19h ago
To endarken any page while you're browsing, just execute this javascript in a bookmark:

javascript: (() => { document.documentElement.style.filter = "invert()";document.documentElement.style.background = '#fff' })();

baobun · 19h ago
carlosjobim · 18h ago
Enable reader mode on your browser. It's built-in, no plugins needed. Open source is the wrong way.