Quote:
Originally Posted by MarjaE
I have a severe astigmatism. Everywhere, I need to force Firefox 80 to use more readable-for-me fonts and font sizes.
|
You can install the
GreaseMonkey/Tampermonkey browser plugins and override pretty much any style with your own style.
For example, the following user script will change the font, the font size and the font color of user reviews.
Code:
// ==UserScript==
// @name Fix Goodreads styles
// @include *.goodreads.com/book*
// @version 1
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.readable {font-family: "Comic Sans MS"; font-size: 130%; color: blue; !important; }');
To install it select
New user script..., overwrite the template with the above code and save it.
If you then select a book review, for example,
this one, you should see a difference.
For more information, see
this website.