gpt4 book ai didi

google-chrome-extension - chrome.tabs.highlight 给出错误 "No tab at index"

转载 作者:行者123 更新时间:2023-12-04 13:49:21 26 4
gpt4 key购买 nike

打电话时chrome.tabs.highlight({'tabs': tabId}, function(){});我收到此错误:
Unchecked runtime.lastError while running tabs.highlight: No tab at index: 7355.

最佳答案

chrome.tabs.highlight 需要标签索引,而不是 tabId。您可以使用 chrome.tabs.get 将 tabId 转换为索引:

chrome.tabs.get(tabId, function(tab) {
chrome.tabs.highlight({'tabs': tab.index}, function() {});
});

关于google-chrome-extension - chrome.tabs.highlight 给出错误 "No tab at index",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30063718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com