Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

How do I make tabs open on the right by default?

  • 6 odpovedí
  • 1 má tento problém
  • 3902 zobrazení
  • Posledná odpoveď od lumbercartel

more options

Opening next to the previous-in-sequence tab absolutely does not work (I'm a stack type) so I end up dragging URLs to the far right of the tab bar -- which is a pain. This wasn't a problem with older Firefox versions e.g. 54, but it's broken now (61) and none of the available extensions address tab location.

Opening next to the previous-in-sequence tab absolutely does not work (I'm a stack type) so I end up dragging URLs to the far right of the tab bar -- which is a pain. This wasn't a problem with older Firefox versions e.g. 54, but it's broken now (61) and none of the available extensions address tab location.

Vybrané riešenie

Firefox's native behavior is:

  • Open related tabs next to current (e.g., from a link in the current tab)
  • Open new/unrelated tabs at the end of the bar

There are now preferences to manage both of those:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button promising to be careful or accepting the risk.

(2) In the search box above the list, type or paste curr and pause while the list is filtered

(3) Then set:

Open Related Tabs Next to Current, Others at the End of the Bar:

browser.tabs.insertAfterCurrent = false (default) browser.tabs.insertRelatedAfterCurrent = true (default)

Open All Tabs Next to Current

browser.tabs.insertAfterCurrent => true browser.tabs.insertRelatedAfterCurrent = whatever

Open All Tabs at the End of the Bar

browser.tabs.insertAfterCurrent = false (default) browser.tabs.insertRelatedAfterCurrent => false

To switch a boolean-type preference between true and false, double-click it.

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (6)

more options
more options

Next to current is what I'm trying to cure -- the stupid things pile up in the middle of the tab bar instead of on the far right in order.

more options
more options

And that one opens adjacent to the current tab -- which most of the time is pinned on the far left, so the tab opens somewhere to the left of all the others and I have to search for it.

Far right. It used to be possible.

more options

Vybrané riešenie

Firefox's native behavior is:

  • Open related tabs next to current (e.g., from a link in the current tab)
  • Open new/unrelated tabs at the end of the bar

There are now preferences to manage both of those:

(1) In a new tab, type or paste about:config in the address bar and press Enter/Return. Click the button promising to be careful or accepting the risk.

(2) In the search box above the list, type or paste curr and pause while the list is filtered

(3) Then set:

Open Related Tabs Next to Current, Others at the End of the Bar:

browser.tabs.insertAfterCurrent = false (default) browser.tabs.insertRelatedAfterCurrent = true (default)

Open All Tabs Next to Current

browser.tabs.insertAfterCurrent => true browser.tabs.insertRelatedAfterCurrent = whatever

Open All Tabs at the End of the Bar

browser.tabs.insertAfterCurrent = false (default) browser.tabs.insertRelatedAfterCurrent => false

To switch a boolean-type preference between true and false, double-click it.

more options

Thanks. I suspected that the solution was somewhere in the forest of config setings, but the search terms are an art in themselves.