如何使用AppleScript在Chrome背景中打开新标签页

时间:2011-05-15 08:30:43

标签: google-chrome applescript

如何使用Chrome中的AppleScript在Background中打开新选项卡。 打开一个标签似乎很容易,但我找不到可以调用的方法来打开背景中的标签,这意味着活动标签保持不变。

1 个答案:

答案 0 :(得分:11)

您可以将active tab index保存在变量中,并在创建标签后将其设置回来:

tell application "Google Chrome"
    set activeIndex to get active tab index of window 1
    tell window 1
        set newTab to make new tab with properties {URL:"http://www.google.com/"}
    end tell
    set active tab index of window 1 to activeIndex
end tell