Chrome拡張機能のコンテンツスクリプトから「this」タブIDを取得する方法
chrome.tabs APIを使用する方法:chrome.tabs.query({ active: true, currentWindow: true }, function(tabs) { var tabId = tabs[0].id; console.log(tabId); });>>More
chrome.tabs APIを使用する方法:chrome.tabs.query({ active: true, currentWindow: true }, function(tabs) { var tabId = tabs[0].id; console.log(tabId); });>>More