Firefox 131 enable vertical tabs with about:config or user.js

Firefox 131 has vertical tabs but you have to enable them with about:config
or a user.js file in your Firefox profile directory

i have all the user.js settings in this repository
along with css to remove the search your tabs button that appears above the url bar


Here's how to enable vertical tabs

Method 1 - about:config

open

Code:
about:config

search for sidebar

20240928_23h31m09s_grim.png


you will see the following 4 options

toggle sidebar.revamp to true

Code:
sidebar.revamp

toggle sidebar.verticalTabs to true

Code:
sidebar.verticalTabs

sidebar.main.tools controls what appears in the sidebar

Code:
sidebar.main.tools

sidebar.visibility lets you set the initial visibility which by default is always
but you can change this in the sidebar settings

Code:
sidebar.visibility

toggle sidebar.revamp and sidebar.verticalTabs to true
the changes are applied instantly

20240928_23h32m28s_grim.png


click the little gear icon at the bottom left of the sidebar
this opens the customization options for the sidebar

20240928_23h32m55s_grim.png



Method 2 - user.js

find the firefox profile directory

press alt,
in the help menu select "More Trouble shooting information"
and you will see your profile directory

create a file called user.js

Code:
user.js

you have to enable the sidebar and vertical tabs

Code:
// sidebar
user_pref("sidebar.revamp", true);
// sidebar visibility
user_pref("sidebar.visibility", "hide-sidebar");
// sidebar tools
user_pref("sidebar.main.tools", "history");
// vertical tabs
user_pref("sidebar.verticalTabs", true);

above the url bar you will notice there is another bar with a + symbol for adding a new tab
we want to get rid of that bar because it takes up a lot of space and the sidebar has a new tab button in it

so right click next to the + symbol and select customize toolbar
and then drag the + symbol to the the main page with all the other icons

and the bar above the url bar will be removed as well for a much cleaner look

before

20240928_23h37m44s_grim.png


and after removing the bar above the url bar

20240928_23h42m22s_grim.png
 
i prefer the vertical tabs on the right

having the tabs on the left is rather distracting
and i find it makes it harder to focus on the page

the problem is the sidebar pushes the page content to the right

20240929_15h41m39s_grim.png


having the tabs on the right lets you focus on the page

20240929_15h41m54s_grim.png
 
i havent been able to find a keyboard shortcut to toggle the sidebar and vertical tabs

im also not sure if its possible to just show the favicons without the title
it might be possible using userChrome.css but i havent found any code yet
 
another tweak
move the sidebar button from the left hand side to the right

right click on the toolbar and select customize toolbar and drag the sidebar icon to the right

20240929_18h41m22s_grim.png
 
i havent been able to find a keyboard shortcut to toggle the sidebar and vertical tabs

im also not sure if its possible to just show the favicons without the title
it might be possible using userChrome.css but i havent found any code yet
Just tried it, initially there were only the favicons, after playing with show/hide settings I couldn't find a way to remove tabs' title...
Guess it's still very experimental, since only Nightly has the option to enable vertical tabs in "Firefox Labs".
 
Guess it's still very experimental
thats probably why there isnt a option in the settings to enable it

one thing i have found when switching tabs using ctrl + tab
is that it feels more like looking though a window and switching tabs changes the view

whereas horizontal tabs are like looking though a different window each time
which makes you notice the window frame each time you switch tabs

if that makes sense
 
… attention to the left, …

<https://forums.freebsd.org/posts/674468>

Guess it's still very experimental, since only Nightly has the option to enable vertical tabs in "Firefox Labs".

www/firefox 131.0_1,2 – not a nightly – does have the option (not in Labs).

The vertical tab preference is a sidebar customisation. A shot of Firefox on FreeBSD:

1727926818482.png


Just tried it, initially there were only the favicons, after playing with show/hide settings I couldn't find a way to remove tabs' title...

For favicons to remain visible without titles: prefer to always show the sidebar. Result:

1727927609211.png


People who prefer vertical tabs with titles whilst hiding Firefox sidebars might like the Sidebar Tabs extension by asamuzaK:

1727927260876.png
 
Back
Top