使用指定的 URL 在终端以隐身模式在 CHROME 中打开新窗口

使用指定的 URL 在终端以隐身模式在 CHROME 中打开新窗口

我需要帮助完成一个 bash 脚本,该脚本应该能够

  • 在 Chrome(或 Chrome Canary)中打开新窗口(不是标签页)
  • 打开每个新窗口隐身模式
  • 打开指定网址在脚本中

我的脚本如下:

# Open up the urls in Canary
# but in NEW_TABS not in NEW_WINDOWS
# NOT in INCOGNITO Mode either
open -a "Google Chrome Canary" http://example1.com --args --incognito
open -a "Google Chrome Canary" http://example2.com --args --incognito
open -a "Google Chrome Canary" http://example3.com --args --incognito
open -a "Google Chrome Canary" http://example4.com --args --incognito

# New incognito tabs open up but aren't opening up the urls
open -na "Google Chrome Canary" http://example1.com --args --incognito
open -na "Google Chrome Canary" http://example2.com --args --incognito

我在 OSX 上使用 Iterm。我发现在网上找不到这种需求的解决方案真是有趣。请告诉我你的建议。谢谢。

答案1

尝试这个

open -na "Google Chrome" --args -incognito example.com

如果您的用例是打开一个链接,那么这种方法有效。

就我的情况而言,我试图打开一个 html 文件index.html,但我认为它自动以 为前缀,http://所以它以 为开头打开了文件http://index.hml。希望以上内容对您有所帮助。

答案2

在 Windows 中打开 cmd 并输入此

start Chrome --incognito http://google.com/

此处 URL 为可选

相关内容