我只是想知道是否有一個新的方式在清單2重寫這樣的示例應用程序。谷歌瀏覽器擴展清單2更新
http://developer.chrome.com/extensions/samples.html#4e35caa9742fb82dbd628892d23a781614f6eff6
我開始這個轉變成一個清單2應用程序,並遇到了一些問題。
bgPage.oauth.authorize(function() {
Uncaught TypeError: Cannot call method 'authorize' of undefined
if (!bgPage.docs.length) {
gdocs.getDocumentList();
} else {
gdocs.renderDocList();
}
util.scheduleRequest();
});
bgPage.oauth.sendSignedRequest(url, gdocs.processDocListResults, params);
由於manifest2中的某些原因,bgPad.oauth調用不再有效。
有沒有辦法讓這項工作再次?
什麼錯誤您在控制檯中看到 – apsillers 2012-08-14 17:20:30
遺漏的類型錯誤:無法調用‘授權’的未定義 – Blynn 2012-08-14 17:22:20