如何使用 --allow-files-access-from-files 参数在 OS X 上启动 Google Chrome?

如何使用 --allow-files-access-from-files 参数在 OS X 上启动 Google Chrome?

我在 OS X(Snow Leopard)上运行 Google Chrome(12.0.742.122),我需要传递“--allow-files-access-from-files”选项,以便我可以测试我正在处理的一些本地 javascript 内容。

我尝试使用以下命令行方法:

/Applications/Google\ Chrome.app/Content/MacOS/Google\ Chrome --allow-files-access-from-files

open /Applications/Google\ Chrome.app/Content/MacOS/Google\ Chrome -n --args --allow-files-access-from-files

两者都将启动 Google Chrome,但它似乎没有接受论点,因为我仍然无法测试我的本地 Javascript。

有什么建议么?

答案1

open -a "Google Chrome" --args --allow-file-access-from-files

我不知道如何充分测试开关,但它对我来说--allow-file-access-from-files是有用的(相同的版本和操作系统)。--incognito

看起来好像 Chrome 不喜欢被打开两次;当传递开关-nopen(应该打开一个新实例)时,它会立即终止自身。

编辑:'allow-files-access-from-files' 应为 'allow-file-access-from-files'

相关内容