Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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

  • 6 回覆
  • 1 有這個問題
  • 5076 次檢視
  • 最近回覆由 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.

被選擇的解決方法

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.

從原來的回覆中察看解決方案 👍 1

所有回覆 (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

選擇的解決方法

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.