在 Mac OS X 上使用不同的配置文件打开多个 Firefox 实例

问题描述 投票:0回答:3

使用不同的配置文件(10.5、10.6 和 10.7)打开不同的 Firefox 实例(Firefox 3 到 10)的最佳方式是什么?

对于 Firefox-7 之前的版本,修改 firefox 包的内容并添加 -no-remote -P {PROFILE} 有效。

但是,在最新版本的 Firefox 中,它不起作用。

我也尝试过使用Automator,但没有成功。

有人遇到过类似的问题并解决了吗?

谢谢

macos firefox profile instances
3个回答
3
投票

对于新版本的 Firefox,请使用以下命令:

/Applications/Firefox.app/Contents/MacOS/firefox-bin -P -no-remote &> /dev/null &

来源:http://sonnygill.net/mac/mac-multiple-firefox-profiles/

页面上解释了如何使用 Automator 创建快捷方式。


2
投票

@dalvan 答案不再有效(10.15)

我发现的解决方法是:

  • 正常运行第一个 Firefox 实例(配置文件选择器窗口打开,选择
    primary
    配置文件)
  • 使用
    Automator.app
    或从 shell 运行
    /Applications/Firefox.app/Contents/MacOS/firefox-bin -P &
    并选择
    secondary
    配置文件

从其他应用程序传输的所有链接都将在

primary
个人资料中打开

参考。 https://bugzilla.mozilla.org/show_bug.cgi?id=1653218

更新(2024-01-01)

由于某种原因,从 shell(或

Automator
应用程序)开始已停止为我工作,但还有另一种解决方法

$ open -n /Applications/Firefox.app --args -P

© www.soinside.com 2019 - 2024. All rights reserved.