我已经在这个 chrome 参数列表中搜索了“第一个/唯一”参数 https://peter.sh/experiments/chromium-command-line-switches/#load-extension
但我找不到它,有人知道如何使用“first/only”参数运行 google 吗?我的意思是,如果 chrome 窗口不存在,则运行它,但如果它已经打开,则不要打开另一个 chrome 实例,而只关注它。
在其他程序(如 IrfanView)中,此参数被称为“first/only”。感谢 Advanced。
答案1
这个小脚本就可以完成这个工作。
#NoTrayIcon
if (WinExist("ahk_exe chrome.exe")) {
WinActivate ahk_exe chrome.exe
} else {
Run "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
}