chrome 扩展参数有什么用:tabld?

发布于 2024-12-11 04:52:11 字数 400 浏览 0 评论 0原文

我正在学习如何编写 chrome 扩展。

在大多数api中,都有一个参数:tabld。

我无法理解它是用来做什么的。

例如,函数 chrome.browserAction.setIcon 的描述是此处

搜索了整个互联网和chrome扩展文档,甚至没有一个例子,只是一个示例描述说:

tabId(可选整数)将更改限制为特定选项卡 被选中。关闭选项卡时自动重置。

这个论点有什么用?谁能给我举个例子吗?

此致

I'm learning how to write a chrome extension.

in most of the apis, there is a argument: tabld.

I can't understand what is it used for.

for example ,function chrome.browserAction.setIcon's description is here

I searched all over the internet and chrome extension documents, there is not even a example there, just a sample describe said:

tabId ( optional integer ) Limits the change to when a particular tab
is selected. Automatically resets when the tab is closed.

what this argument used for? can anyone give me a example of it ?

Best regards

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

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

发布评论

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

评论(1

枫以 2024-12-18 04:52:11

Chrome 中的每个选项卡都有唯一的 ID,该 ID 在浏览器重新启动后会重置。当您想要识别选项卡时,它很有用。

在 99% 的情况下,您只会对当前选定的选项卡感兴趣,因为它是用户当前所在的位置。您可以将 null 而不是 tabId 传递给几乎任何方法,这意味着您需要选定的选项卡 ID。与窗口 id 相同 - 传递 null 通常表示当前窗口。

否则,您可以使用 chrome.tabs.getSelected 获取选定的选项卡,它返回包含 idtab 对象。您可以使用 chrome.tabs.getAllInWindow 获取所有选项卡及其 id。

Each tab in Chrome has unique ID which resets after browser restart. It is useful when you want to identify tabs.

In 99% cases you will be interested only in currently selected tab because it is where a user is right now. You can just pass null instead of tabId to almost any method and it would mean you want selected tab id. Same with window id - passing null usually means current window.

Otherwise you can get selected tab with chrome.tabs.getSelected, which returns tab object containing id. You can get all tabs with their ids with chrome.tabs.getAllInWindow.

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