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);
});
这是我的代码。我添加了
"permissions": [
"tabs"
],
到manifest.json
每当我尝试加载网页时,都会记录错误url
,而不是警告"Cannot read property 'query' of undefined"
。
我不知道为什么。请帮助,谢谢