0

有没有人遇到浏览器启动期间 chrome API 不可用的情况

我发现只有在一台测试计算机上的浏览器启动期间我没有在日志中收到“回调发生”的情况

chrome.topSites.get(function(data) { console.log("回调发生"); });

4

1 回答 1

0

添加topSites权限选项卡

清单.json

"permissions": [
    "tabs",
    "activeTab", 
    "topSites", << Add this 
    "http://*/*",
    "https://*/*"
],

 "browser_action": {
   "default_popup": "popup.html"
}

并在popup.html添加 js 文件并写入

chrome.topSites.get(function(t) { console.log('Here I am inside topSites')});

它在我这边工作。

于 2014-10-14T06:03:16.353 回答