标签: javascript google-chrome
我正在尝试检索当前活动/所选/当前选项卡的索引。运行哪个命令将检索索引?
答案 0 :(得分:4)
您需要使用Chrome API,这可用于扩展程序和应用程序。
chrome.tabs.getSelected(null, function(tab){ console.log("index:", tab.index); });