有没有人遇到浏览器启动期间 chrome API 不可用的情况
我发现只有在一台测试计算机上的浏览器启动期间我没有在日志中收到“回调发生”的情况
chrome.topSites.get(function(data) { console.log("回调发生"); });
有没有人遇到浏览器启动期间 chrome API 不可用的情况
我发现只有在一台测试计算机上的浏览器启动期间我没有在日志中收到“回调发生”的情况
chrome.topSites.get(function(data) { console.log("回调发生"); });
添加topSites
权限选项卡
"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')});
它在我这边工作。