chrome 插件 获取 tag id的方法

页面刷新触发

chrome.tabs.onUpdated.addListener(
function(tabId,changeInfo,tab){
  console.log(tab.url);
  add_cnt(tab.url);
});

接受通讯消息时触发

chrome.tabs.getSelected(null, function(tab) {
  console.log(tab.id);
}

 

 

 

.