Ask HN: Simple open source to remove the bright background on a web page? 2 points by 9o1d 1y ago ↗ HN 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.
[–] baobun 1y ago ↗ userContent.csshttps://superuser.com/questions/318912/how-can-i-override-th...You need to enable it in about:config these dayshttps://www.userchrome.org/firefox-changes-userchrome-css.ht...
[–] willcate 1y 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' })();
[–] carlosjobim 1y ago ↗ Enable reader mode on your browser. It's built-in, no plugins needed. Open source is the wrong way.
[–] brudgers 1y ago ↗ User scripts using TamperMonkey.So you can run your own Javascript in your own browser.Locally.Good luck.
4 comments
[ 3.1 ms ] story [ 33.4 ms ] threadhttps://superuser.com/questions/318912/how-can-i-override-th...
You need to enable it in about:config these days
https://www.userchrome.org/firefox-changes-userchrome-css.ht...
javascript: (() => { document.documentElement.style.filter = "invert()";document.documentElement.style.background = '#fff' })();
So you can run your own Javascript in your own browser.
Locally.
Good luck.