检测 Google Chrome 中所有打开的页面,而不仅仅是当前窗口中的页面

发布于 2024-10-06 18:44:03 字数 354 浏览 2 评论 0原文

我正在寻找一种类似于以下内容的方法:

chrome.tabs.getAllInWindow(integer windowId, function callback)

可以获取网络浏览器打开的所有选项卡/页面,无论它们是否位于当前打开的窗口中。

我发现:

chrome.windows.getAll(object getInfo, function callback)

但这本身并不能达到我想要的效果。

能否以某种方式将两者组合起来以获得当前在网络浏览器中打开的所有页面?或者有更好的方法来做到这一点吗?

谢谢。

I'm looking for a method similar to:

chrome.tabs.getAllInWindow(integer windowId, function callback)

that can get all tabs/pages that are open by the web-browser, whether or not they are in the currently opened window.

I've found:

chrome.windows.getAll(object getInfo, function callback)

but this by itself does not do what I want.

Can the two be combined somehow to get all the pages currently open in the web browser? Or is there a better way to do this?

Thanks.

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

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

发布评论

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

评论(1

辞慾 2024-10-13 18:44:03

如果将 populate 标志传递给 getAll,它不仅会返回所有窗口,还会返回这些窗口中的选项卡:

chrome.windows.getAll({populate: true}, function(windows) {
    //each window will contain an array of tabs in it
}

If you pass populate flag to getAll it will return not only all windows but tabs in those windows as well:

chrome.windows.getAll({populate: true}, function(windows) {
    //each window will contain an array of tabs in it
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文