Our screens have gotten wider. Our browsers have also gotten wider. But our tabs remain a thin, barely visible line drawn across the top that become two letters when we have more than 10 tabs open? This is 2021. You need side tabs.
- Download and install https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab/
- Enable
userChrome.css
https://winaero.com/enable-loading-userchrome-css-usercontent-css-firefox/ - Open
about:profiles
and clickOpen Folder
next to the Root Directory. - Create a folder named
chrome
- Create a file named
userChrome.css
inside that folder. - Paste the following into it and save
.tabbrowser-tab:not([selected]) {
display: none !important;
}
.tabbrowser-tab[visuallyselected="true"] {
max-width: none !important;
}
Enjoy!