Reviews for Tree Style Tab
Tree Style Tab by Piro (piro_or)
1,678 reviews
- Rated 5 out of 5by Emil Vikström, 8 years ago
- Rated 5 out of 5by Firefox user 12612029, 8 years ago
- Rated 5 out of 5by MoonFire711, 8 years ago
- Rated 5 out of 5by psweber, 8 years agoGreat Addon, incredibly useful when doing research.
Thanks Prio for redoing the Addon for the new API!
@everyone who is complaining about the lost features:
seriously, it's not the addon dev's fault they changed the addon API. stop giving bad reviews! - Rated 5 out of 5by 宋祥忠, 8 years ago
- Rated 5 out of 5by Firefox user 13496626, 8 years ago
- Rated 5 out of 5by Net User, 8 years ago
- Rated 5 out of 5by Firefox user 13442709, 8 years agoI have been using this extension for years, and am very happy that a release for Firefox 57 was released quickly!
- Rated 5 out of 5by Firefox user 13509196, 8 years ago
- Rated 5 out of 5by Firefox user 13440733, 8 years ago
- Rated 5 out of 5by Firefox user 13459309, 8 years ago2 Author
1) Can we get an option to have «Additional Context Menu Items» not in submenu, but in main context menu just separated by separator?
2) Can we have options to disable «standard» menu items. Like I do not need «Reload All Tabs» and all other in this section.
3) Is translation possible for this menu? - Rated 5 out of 5by Firefox user 13506369, 8 years ago
- Rated 5 out of 5by SAITO Hironobu, 8 years ago
- Rated 5 out of 5by amandalaine, 8 years agoBest browser extension I have ever seen! I can't figure out why browsers haven't yet incorporated this feature into their browsers as a default feature. This browser extension is the primary reason I use Firefox and not Chrome. Thank you tree-style-tab developers! You're the best!!
- Rated 5 out of 5by BewareThePenguins, 8 years ago
- Rated 5 out of 5by Firefox user 13346421, 8 years ago
- Rated 5 out of 5by ^dj^, 8 years agoAll the right features. Saves precious screen space and my time.
- Rated 5 out of 5by Firefox user 13499562, 8 years ago
- Rated 5 out of 5by Firefox user 13498801, 8 years ago
- Rated 5 out of 5by Firefox user 13496029, 8 years ago
- Rated 5 out of 5by Firefox user 11597538, 8 years agoMy favorite plugin by far! Always updated even for Firefox 57.
- Rated 5 out of 5by Firefox user 12337131, 8 years ago
- Rated 5 out of 5by Firefox user 13494387, 8 years agoUpdate : there is a companion extension that supports scrolling among the tabs using the wheel of the mouse: https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab-mouse-wheel/
Therefore the Autohotkey solution is now obsolete.
------------------------- old review -----------------------------
One more 5 Stars and a bigup for Piro!
I really like to be able to scroll the tabs in my Firefox. Since v57, it's not possible anymore, so here is a solution found on the"Tab Wheel Scroll" extension page :
1) Get Autohotkey
2) Create the following script:
#IfWinActive ahk_class MozillaWindowClass
;MouseGetPos, [OutputVarX, OutputVarY, OutputVarWin, OutputVarControl, 1|2|3]
~WheelDown::
MouseGetPos X, Y
if ( X < 205 )
SendInput ^{PgDn}
Return
~WheelUp::
MouseGetPos X, Y
if ( X < 205 )
SendInput ^{PgUp}
Return
And run the script whenever you launch Firefox.
You must adjust the X value ("205" pixels in my case) to the width of your vertical tab.