如何使用 AppleScript 在 Chrome 的后台打开新选项卡

发布于 2024-11-07 11:35:50 字数 93 浏览 0 评论 0原文

如何在 Chrome 中使用 AppleScript 在后台打开新选项卡。 打开选项卡似乎很容易,但我只是找不到可以调用什么来在后台打开选项卡,这意味着活动选项卡保持不变。

How to open a new tab in Background using AppleScript in chrome.
Open a tab seems so easy, but I just can't find what can be called to open the tab in background, which means the active tab remains the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琉璃繁缕 2024-11-14 11:35:50

您可以将活动选项卡索引保存在变量中,并在创建选项卡后将其重新设置:

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

You can save the active tab index in a variable and set it back after you created your tab:

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文