dre*_*ntz 6 google-chrome-extension google-chrome-app
在调用时chrome.tabs.highlight({'tabs': tabId}, function(){});我收到此错误:
Unchecked runtime.lastError while running tabs.highlight: No tab at index: 7355.
dre*_*ntz 10
chrome.tabs.highlight需要选项卡索引,而不是tabId.您可以使用chrome.tabs.get将tabId转换为索引:
chrome.tabs.get(tabId, function(tab) {
chrome.tabs.highlight({'tabs': tab.index}, function() {});
});
Run Code Online (Sandbox Code Playgroud)