我只是想知道清单 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 调用不再有效。
有没有办法让这项工作再次发生?