Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

on Mac startup, I need two Firefox windows to open with different tabs in each

  • 4 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: Terry

more options

When I start my Mac, I'd like two Firefox windows to open with two different sets of startup tabs. Is this possible?

When I start my Mac, I'd like two Firefox windows to open with two different sets of startup tabs. Is this possible?

선택된 해결법

I don't use a home page but I want the same windows and tabs when I restart the browser. I leave the windows and tabs open when I exit the browser and have the setting "Open Previous Windows and Tabs". That is the first setting, at the top of the General page in Settings.

문맥에 따라 이 답변을 읽어주세요 👍 0

모든 댓글 (4)

more options

Yes. Set the home page so both links are entered with a | is between the links. Example: Google.com|Yahoo.com

https://support.mozilla.org/en-US/kb/how-to-set-the-home-page

more options

Using the pipe (|) symbol only works for tabs in the same window. For multiple windows you likely need to use a script file to be able to specify startup parameters with -new-tab and -new-window switched and URLs between them.

On Linux this would be this code and I assume that on Mac this will work as well. Make sure to set the executable flag on the file. You can find the Firefox installation path on the "Help -> More Troubleshooting Information" (about:support) page.

#!/bin/sh

cd <path to firefox>
./firefox --new-tab URL1 URL2 --new-window URL3 URL4

글쓴이 cor-el 수정일시

more options

Well, this is getting beyond my pay grade! But I appreciate the help!

more options

선택된 해결법

I don't use a home page but I want the same windows and tabs when I restart the browser. I leave the windows and tabs open when I exit the browser and have the setting "Open Previous Windows and Tabs". That is the first setting, at the top of the General page in Settings.