cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Mimo-1306
New member
Status: New idea

while working with more or less 100 tabs it would be very helpful for orientation where you are and to find another open Tab faster and without scrolling all the way from left to right or from right to left. I´m already retired and work since mid 90s with Computers but just for research and information. For over 20years Internet ít´s still annoying to spend time with searching another text-relating open Tab. 

As this will be a challenge for the programmers I just give a first idea:

It should work seperate in the background and should open a MENUE to number each open Tab. Also possible -  it gives a number automatically to each new open Tab. If a TAB must be switched in the line it should get the right consecutive number of the new point within all TABS. ( Best solution)

I´m German lang not perfect english. Hope one can do any workout with this. Thanks and best.

Mike Germany

 

 

 

2 Comments
Status changed to: New idea
Jon
Community Manager
Community Manager

Thanks for submitting an idea to the Mozilla Connect community! Your idea is now open to votes (aka kudos) and comments.

Agentvirtuel
Contributor

Hello

It's not the answer you'd expect

Nevertheless, if you would like to try
Show the number of open tabs on the 'List all tabs' button
https://www.reddit.com/r/FirefoxCSS/comments/s4wsww/show_the_number_of_open_tabs_on_the_list_all_tab... ?
Color the active tab ?
https://forums.mozillazine.org/viewtopic.php?f=38&t=3114834

/* show tab manager button even when tabs aren't overflowing -  
   can instead use browser.tabs.tabmanager.enabled;true as well  
   or skip this part if you want to retain the default behaviour */  
#alltabs-button {  
    display: -moz-box !important;  
}  

/* tab counter */  
#TabsToolbar-customization-target {  
    counter-reset: tabCount;  
}  
.tabbrowser-tab {  
    counter-increment: tabCount;  
}  
#alltabs-button > .toolbarbutton-badge-stack > .toolbarbutton-icon {  
    visibility: collapse !important;  
}  
#alltabs-button > .toolbarbutton-badge-stack {  
    position: relative !important;  
}  
#alltabs-button > .toolbarbutton-badge-stack::before {  
    content: counter(tabCount);  
    border-bottom: 1px solid var(--toolbarbutton-icon-fill);  
    color: var(--toolbarbutton-icon-fill);  
    opacity: var(--toolbarbutton-icon-fill-opacity);  
    position: absolute;  
    bottom: var(--toolbarbutton-inner-padding);  
    left: 50%;  
    transform: translateX(-50%);  
    padding: 0 3px;  
}

/* Color the active tab */

.tabbrowser-tab[selected] .tab-content {
  background-color: #33cc33 !important; }
.tabbrowser-tab:hover:not([selected]) .tab-content {
  background-color: #cccc33 !important; }
.tabbrowser-tab:not([selected="true"]):not(:hover) .tab-content {
  background-color: #cc3333 !important; }

Copy the code and paste below
https://www.userchrome.org/download-userchrome-css.html
Generate CSS file userChrome.css

Create a chrome folder
Move userChrome.css to your chrome folder

Go to your profile folder
https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data?#w_how-do-i-find-my-pro...
Move your chrome folder to your profile folder

about:config https://support.mozilla.org/en-US/kb/about-config-editor-firefox
Search toolkit.legacyUserProfileCustomizations.stylesheets
To change a boolean (true-false) preference's value, double-click on the preference. to set it to true

Restart Firefox

1.png