Moving/Removing List All Tabs Button
From Firefox Extension Guru's Wiki
Change the location or remove the List All Tabs Button.
Contents |
Compatibility
- Firefox 2.0: YES
- Firefox 3.0: YES
- Firefox 3.5: YES
- Firefox 3.6: YES
Background
The List All Tabs Button appears by default on the right side of the toolbar and when clicked displays the tabs which are open in that window.
The Tweak
With Firefox 2 came the options of changing where the Close Tab Buttons are displayed along with Tab Overflow and the List All Tabs buttons. By default the List All Tabs Button is on the right side of the tab bar. The button can either be move to the left side of the tab bar or remove the button altogether.
Moving The Button
To change the location of the List All Tabs button, use the ChromEdit Plus extension. Add these lines to your userChrome.css file located in your profile folder:
.tabs-alltabs-stack {-moz-box-ordinal-group: 1 !important}
.tabbrowser-arrowscrollbox {-moz-box-ordinal-group: 2 !important}
.tabs-closebutton-box {-moz-box-ordinal-group: 3 !important}
Note: This change will affect the location of the close tab button if the single button at end of bar option is selected on the Close Tab Buttons Tweak.
Save and restart for Firefox for the changes to take effect.
Removing The Button
To remove the List All Tabs button, use the ChromEdit Plus extension. Add this line to your userChrome.css file located in your profile folder:
Firefox 2
.tabs-alltabs-stack { display: none !important;}
Firefox 3 or newer
.tabs-container > stack {display:none!important}
Save and restart for Firefox for the changes to take effect.