Page 1 of 1

[Resolved] Is there any way to make the font size larger in NoScript?

Posted: Tue Mar 19, 2024 7:10 pm
by ComputerHelp1234
Is there any way to make the font size larger in NoScript? Version 11.4.29.

Re: Is there any way to make the font size larger in NoScript?

Posted: Wed Mar 20, 2024 12:47 am
by barbaz
I don't know any built-in way, but should be achievable with userContent.css -

Code: Select all

@-moz-document url-prefix("moz-extension://YOUR-UUID-FOR-NOSCRIPT/") {

* {
  font-size: 20px !important;
}

}
replacing YOUR-UUID-FOR-NOSCRIPT with the UUID shown in the address bar when you go to NoScript Options.

This requires about:config > toolkit.legacyUserProfileCustomizations.stylesheets set to true

Re: Is there any way to make the font size larger in NoScript?

Posted: Wed Mar 20, 2024 2:37 am
by ComputerHelp1234
Thank you barbaz. I will look into this. I've done userChrome.css before, so userContent.css shouldn't be too hard.

Re: Is there any way to make the font size larger in NoScript?

Posted: Wed Mar 20, 2024 5:40 pm
by ComputerHelp1234
I got it to work. Much better! Thank you again barbaz!

Re: Is there any way to make the font size larger in NoScript?

Posted: Thu Mar 21, 2024 6:11 pm
by barbaz
You're welcome. Image