Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

If I already have firefox open in Linux, how can I open a new URL in a new window.

  • 6 trả lời
  • 1 gặp vấn đề này
  • 244 lượt xem
  • Trả lời mới nhất được viết bởi lmpetrie

more options

I want to be able to click on a button, and have firefox open a new window at a given URL. Currently, if I already have firefox running, then it opens a new tab, which may be on a different desktop. Having to detach the new tab to a new window and move it back to the right desktop seems like unnecessary work.

I want to be able to click on a button, and have firefox open a new window at a given URL. Currently, if I already have firefox running, then it opens a new tab, which may be on a different desktop. Having to detach the new tab to a new window and move it back to the right desktop seems like unnecessary work.

Giải pháp được chọn

Tất cả các câu trả lời (6)

more options

You can hold down the Shift key and left-click a link or bookmark to open this link in a new window.

more options
more options

If you mean a shortcut or link completely outside of Firefox, there is a hidden preference to change how that works. This requires a visit to the about:config preferences editor. I think it's (C) below that you might want to change.

In a new tab, type or paste about:config and press Enter. Click the button promising to be careful.

In the filter box, type or paste link.o and pause while the list is filtered.

Double click these and set the value as desired:

(A) browser.link.open_newwindow

3 = divert new window to a new tab (default) (checked*)
2 = allow link to open a new window (unchecked*)
1 = force new window into same tab

* First checkbox in Options > Tabs

(B) browser.link.open_newwindow.restriction - for links in Firefox tabs

0 = apply the setting under (A) to ALL new windows (even script windows)
2 = apply the setting under (A) to normal windows, but NOT to script windows with features (default)
1 = override the setting under (A) and always use new windows

(C) browser.link.open_newwindow.override.external - for links in other programs

-1 = apply the setting under (A) to external links (default)
3 = open external links in a new tab in the last active window
2 = open external links in a new window
1 = open external links in the last active tab replacing the current page

Does that work?

more options

This only seems to work from within firefox. I want to be able to run firefox from the command line specifying a URL, and if firefox is already running, have it open in a new window instead of a new tab.

more options

Giải pháp được chọn

Try the -new-window command line switch.

more options

This was exactly what I wanted, to be able to specify on a case by case basis what happens. Thanks.