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