You are not logged in.

#1 2006-11-09 12:26:22

iggy
Member
From: Germany, L.E. - Leipzig
Registered: 2004-10-17
Posts: 367

need alternative to "tabbrowser extensions"

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 smile

Offline

#2 2006-11-09 12:42:25

shamrok
Member
From: Poland, Kraków
Registered: 2006-02-20
Posts: 61

Re: need alternative to "tabbrowser extensions"

Try this one: http://tmp.garyr.net/

Offline

#3 2006-11-09 13:25:23

scarney
Member
From: Wisconsin, US
Registered: 2006-07-11
Posts: 173

Re: need alternative to "tabbrowser extensions"

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

#4 2006-11-09 16:08:49

ratur
Member
From: Belgium
Registered: 2006-10-07
Posts: 19

Re: need alternative to "tabbrowser extensions"

shamrok wrote:

Try this one: http://tmp.garyr.net/

+1

TabMixPlus is great  8)

Offline

#5 2006-11-09 16:22:42

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: need alternative to "tabbrowser extensions"

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

#6 2006-11-09 17:12:04

codemac
Member
From: Cliche Tech Place
Registered: 2005-05-13
Posts: 794
Website

Re: need alternative to "tabbrowser extensions"

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

#7 2006-11-10 20:17:55

codemac
Member
From: Cliche Tech Place
Registered: 2005-05-13
Posts: 794
Website

Re: need alternative to "tabbrowser extensions"

Nevermind, I found out.  DOM inspector is your friend smile

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! tongue ).  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

Board footer

Powered by FluxBB