使用applescript在现有的chrome选项卡中打开url?

时间:2016-01-23 05:08:33

标签: google-chrome scripting applescript

我有一个简单的AppleScript,我每天在课程开始时启动它来设置我的开发环境并在Chrome中打开我的目录。它可以正常工作,但我是强迫症,并希望它在您首次启动Chrome时创建的现有新标签页中打开网址。

tell application "Google Chrome"
    activate
    open location "http://mydir.dev"
end tell

我已尝试搜索Chrome词典,但似乎找不到任何帮助。

1 个答案:

答案 0 :(得分:0)

尝试:

tell application "Google Chrome"
    if not (exists window 1) then reopen
    set URL of active tab of window 1 to "http://mydir.dev"
end tell