Reviews for Tree Style Tab
Tree Style Tab by Piro (piro_or)
1,643 reviews
- Rated 5 out of 5by Firefox user 13459309, 7 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, 7 years ago
- Rated 5 out of 5by SAITO Hironobu, 7 years ago
- Rated 5 out of 5by amandalaine, 7 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, 7 years ago
- Rated 5 out of 5by Firefox user 13346421, 7 years ago
- Rated 5 out of 5by ^dj^, 7 years agoAll the right features. Saves precious screen space and my time.
- Rated 5 out of 5by Firefox user 13499562, 7 years ago
- Rated 5 out of 5by Firefox user 13498801, 7 years ago
- Rated 5 out of 5by Firefox user 13496029, 7 years ago
- Rated 5 out of 5by Firefox user 11597538, 7 years agoMy favorite plugin by far! Always updated even for Firefox 57.
- Rated 5 out of 5by Firefox user 12337131, 7 years ago
- Rated 5 out of 5by Firefox user 13494387, 7 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. - Rated 5 out of 5by Firefox user 13494249, 7 years agoGreat extension that allow me to easily manage 100+ tab
- Rated 5 out of 5by Firefox user 12601099, 7 years agoThis extension is great for me who keep open many tabs and it helps me keep being productive by organizing hierarchically my browsing, I cannot do without anymore, no equivalent for chrome. The new version integrate well in the new Firefox (57), but it's less useful with the top bar staying still and the title. I solved it with userChrome.css, but it's would be easier with an option for the non-technical user. Great work and thanks a lot !
- Rated 5 out of 5by Firefox user 13473449, 7 years ago
- Rated 5 out of 5by Firefox user 12616388, 7 years agoAnonymous user 097179 ty for great explanation!!! Now all works right for this great extension!
- Rated 5 out of 5by SweetLily, 7 years agoBeen using this addon for years now, and tried a few alternatives, but nothing ever came close.
The developer Piroor is also very active on his GitHub. - Rated 5 out of 5by Firefox user 13483924, 7 years agoNot Piro's fault for the top tabs, that is Firefox's new API limitation and Piro has gone to great lengths to get it this far. Just a simple couple of steps to get rid of the top tool bar if you read the bubble information in the new update or just look for the links in these reviews.
Still an indispensable addon for Firefox. I like the new version and thrilled it made it over to the new version 57. I wouldn't use Firefox without it to be quite honest.
Thank you Piro, been using your addons for years. My workflow would not be the same without them.
For those that can't be bothered to educate themselves, here's a copy/paste from someone that took the time to write out step by step instructions. Takes less than 2 minutes to do.
If you're like me and primarily used this add-on to remove the tabs from the top, follow these instructions provided by user Soulyaris:
"Inside your profile folder(it usual c:\Users\*user*\AppData\Roaming\Mozilla\Firefox\Profiles\*something*-default (check date of modified),
Create a new folder named chrome.
Inside the chrome folder, create two new files, userChrome.css and userContent.css.
At the top of userChrome.css, add (copy/paste) the following:
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Hides tab bar*/
#TabsToolbar { visibility: collapse; }
Save it and restart firefox. Enjoy."
That's it, enjoy tree-style without the top tabs.