Это было устарело в Chrome 16 .Правильный способ - использовать chrome.tabs.query
с active:true
и lastFocusedWindow:true
.
// Get the current active tab in the lastly focused window
chrome.tabs.query({
active: true,
lastFocusedWindow: true
}, function(tabs) {
// and use that tab to fill in out title and url
var tab = tabs[0];
run({
url: tab.url,
description: tab.title
});
});