chrome.tabs.query({
active: true,
lastFocusedWindow: true
}, function (tabs) {
// and use that tab to fill in out title and url
var tab = tabs[0];
console.log(tab.url);
alert(tab.url);
});
此代码显示alert()
窗口中的URL,但我需要将此URL存储在变量中,以便我可以存储它或根据需要显示它。