userChrome vs. userContent :
userContent: modify web pages and internal pages like about:newtab and about:homeuserChrome: modify Firefox user interface
-
In
about:configturntoolkit.legacyUserProfileCustomizations.stylesheetstotrue -
Open folder
%APPDATA%\Mozilla\Firefox\Profiles\, find one or more folders and go to the folder that has a lot of other folders. -
Create a new folder named
chromeand in that folder create fileuserChrome.css
.tab-audio-button {
pointer-events: none !important;
}This makes Firefox tabs audio icon not clickable.
- In same folder
chromecreate fileuserContent.css
:root{
scrollbar-face-color: rgb(0,0,0);
scrollbar-track-color: rgb(0,0,0);
scrollbar-color: rgb(100,0,0) rgb(0,0,0);
scrollbar-width: thick;
}