I have retinal damage in my left eye that makes reading text in serif fonts difficult.
Someone once posted this javascript snippet that I save in my Chrome bookmark's bar, that changes a web page's fonts to Tahoma when I click it.
It's wonderful.
I've noticed in recent years there is a trend for designing web pages with text displaying in shades of gray, rather than solid black. Gray is harder to read for me than black, and it renders poorly when printed.
I'm not a coding expert. Is there a simple addition that can be made to this code that will also change font color to solid black?
Here's the code snippet:
javascript:Array.prototype.forEach.call(document.getElementsByTagName("*"), function(e){e.style.fontFamily ="Tahoma"})