我尝试使用chrome.tabs.get
来检测标签是否对应于 tabid 存在:
chrome.tabs.get tabid, (tab) ->
if tab?
chrome.tabs.update tabid, selected: yes
# window.close()
else
url = q('#choose').querySelector('.url').innerText
options =
url: url
active: yes
chrome.tabs.create options
# window.close()
该代码有效,但它给出了如下错误:
tabs.get: No tab with id: 107.
at gotoTab (chrome-extension://lldkaekdbdcgilnmbheemjooggcnhopl/lib/find.js:150:22)
很奇怪,我可以通过搜索选项卡、书签和历史记录获得 tabids,但该选项卡根本不存在。有没有更好的方法来检测 tabid 的存在?