You are not logged in.
hello!
unfortunatly the tabbrowser extensions plugin won't work with the new firefox2. so i'm searching for an alternative. can someone plz help me. tabbrowser preferences are not powerful enough!
i need the possibility to control the behavior of middle-click on tabs, tabbar, links and bookmarks. is there a plugin?
thx, mfg iggy
sorry for my bad english ![]()
Offline
Try this one: http://tmp.garyr.net/
Offline
what shamrock said. i used to use TE, until they got TMP right. i use the beta version right now, in FF 2.0, its working well. you can get it in their forums, in the "builds" forum.
Offline
Offline
You don't need this stuff anymore - firefox has built in "undo close tab" and tab moving, in addition to session management. The only thing I miss is "middle click the tab bar to undo close tab", so I installed "Tab Clicking Options" for that.
Offline
I still haven't worked out how to do a vertical tab bar. On a widescreen it is crucial to me.
If anyone finds out how, please tell me.
Offline
Nevermind, I found out. DOM inspector is your friend ![]()
A forum admin may want to split this, I don't know.
First, install tab mix plus. Then turn on and off things you don't like ( this is an important step!
). Then add the following to your userChrome.css:
#content > tabbox {
-moz-box-orient: horizontal;
}
.tabbrowser-strip {
-moz-box-orient: vertical;
/* note: you can set this to -moz-scrollbars-vertical instead,
but then the scrollbar will *always* be visible. this way
there is never a scrollbar, so it behaves like the tab bar
normally does */
overflow: -moz-scrollbars-none;
}
.tabbrowser-tabs {
-moz-box-orient: horizontal;
min-width: 4ex; /* you may want to increase this value */
-moz-box-align: start;
}
/*> stack > vbox > hbox*/
.tabbrowser-tabs > stack > vbox > hbox > hbox {
-moz-box-orient: vertical;
-moz-box-align: stretch;
}
.tabbrowser-tabs > stack > vbox > hbox > hbox > tab {
-moz-box-align: start;
-moz-box-orient: horizontal;
}
/* to put the tabs on the right un-comment this line
#content > tabbox {-moz-box-direction: reverse;} */
.tabs-alltabs-stack { display: none !important;}
.tabs-scroll-left-button, .tabs-scroll-right-button, .tabs-right, .tabs-left, .tabs-scroll { display:none !important;}My userChrome.css currently looks like this :
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#content > tabbox {
-moz-box-orient: horizontal;
}
.tabbrowser-strip {
-moz-box-orient: vertical;
/* note: you can set this to -moz-scrollbars-vertical instead,
but then the scrollbar will *always* be visible. this way
there is never a scrollbar, so it behaves like the tab bar
normally does */
overflow: -moz-scrollbars-none;
}
.tabbrowser-tabs {
-moz-box-orient: horizontal;
min-width: 4ex; /* you may want to increase this value */
-moz-box-align: start;
}
/*> stack > vbox > hbox*/
.tabbrowser-tabs > stack > vbox > hbox > hbox {
-moz-box-orient: vertical;
-moz-box-align: stretch;
}
.tabbrowser-tabs > stack > vbox > hbox > hbox > tab {
-moz-box-align: start;
-moz-box-orient: horizontal;
}
/* to put the tabs on the right un-comment this line
#content > tabbox {-moz-box-direction: reverse;} */
.tabs-alltabs-stack { display: none !important;}
.tabs-scroll-left-button, .tabs-scroll-right-button, .tabs-right, .tabs-left, .tabs-scroll { display:none !important;}
window > hbox {
direction:rtl;
}
window > hbox > * {
direction:ltr;
}
#keywordRow { display: -moz-grid-line !important; }
/* Remove Back button when there's nothing to go Back to */
#back-button[disabled="true"] { display: none; }
/* Remove Forward button when there's nothing to go Forward to */
#forward-button[disabled="true"] { display: none; }
#stop-button[disabled="true"] { display: none; }
/* Remove the Edit and Help menus
* Id's for all toplevel menus:
* file-menu, edit-menu, view-menu, go-menu, bookmarks-menu, tools-menu, helpMenu */
#helpMenu, #bookmarks-menu, #edit-menu { display: none !important; }
/* Remove Home button */
#home-button { display: none; }
#go-button-stack, .search-go-button-stack {
display: none !important;
}
/*Remove magnifying glass button from search box*/
.search-go-button-stack { display: none !important; }
#FindToolbar > * {display: -moz-box; }Offline