"无法读取属性'查询'未定义" Chrome扩展程序content.js文件

时间:2017-12-18 13:19:25

标签: javascript jquery google-chrome

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"

我不知道为什么。请帮助,谢谢

0 个答案:

没有答案