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

Can I tweak a Firefox.app to launch with a specific profile?

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

more options

I have read http://spf13.com/post/managing-multiple-firefox-profiles-in-os-x/ and https://developer.mozilla.org/en-US/docs/Mozilla/Multiple_Firefox_Profiles#Using_the_profiles, but neither answers my question:

I'm on MacOSX, and I have two Firefoxes in my /Application folder: Firefox.app (version 25) and one I have renamed to FirefoxLatest.app (currently version 27). I need Firefox.app to stay on version 25 because of stuff™ in my development environment.

I want Firefox.app to start with the "lite" profile, and FirefoxLatest.app to start with the "default" profile. Is it possible to add/change something in e.g. Info.plist or application.ini in these app folders so that these apps start with the wanted profile?

Using profile_manager won't work in this case.

I have read http://spf13.com/post/managing-multiple-firefox-profiles-in-os-x/ and https://developer.mozilla.org/en-US/docs/Mozilla/Multiple_Firefox_Profiles#Using_the_profiles, but neither answers my question: I'm on MacOSX, and I have two Firefoxes in my /Application folder: Firefox.app (version 25) and one I have renamed to FirefoxLatest.app (currently version 27). I need Firefox.app to stay on version 25 because of stuff™ in my development environment. I want Firefox.app to start with the "lite" profile, and FirefoxLatest.app to start with the "default" profile. Is it possible to add/change something in e.g. Info.plist or application.ini in these app folders so that these apps start with the wanted profile? Using profile_manager won't work in this case.

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

Hello Hnrk242,

Thank you for contacting Mozilla Support. You should be able to use the script creation guide in the first link you posted to do what you're trying to accomplish.

The two scripts should call:

/Applications/Firefox.app/Contents/MacOS/firefox-bin -p lite

and:

/Applications/FirefoxLatest.app/Contents/MacOS/firefox-bin

Please let us know if this answers your question.

Cheers, Patrick

Đọc câu trả lời này trong ngữ cảnh 👍 0

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

more options

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

Hello Hnrk242,

Thank you for contacting Mozilla Support. You should be able to use the script creation guide in the first link you posted to do what you're trying to accomplish.

The two scripts should call:

/Applications/Firefox.app/Contents/MacOS/firefox-bin -p lite

and:

/Applications/FirefoxLatest.app/Contents/MacOS/firefox-bin

Please let us know if this answers your question.

Cheers, Patrick

more options

It's explicitly not how I wanted to solve this, but I'll settle for the script solution since that seems the only way :)