onDownloadProgress
イベントを発生させる方法を知りたいです。私は拡張機能を作成し、それを Chrome ストアにアップロードし、ここで説明されているすべての手順に従いました: http://developer.chrome.com/webstore/inline_installation
ユーザーが拡張機能をインストールするときに進行状況バーを表示しようとしていますが、次のエラーが表示されます。
Uncaught TypeError: Cannot call method 'addListener' of undefined
これは私が使用しているコードです:
chrome.webstore.onDownloadProgress.addListener(function(percentage){
console.log(percentage)
});
chrome.webstore.install('MY_EXTENSION_ID', function(){ console.log('installed') }, function(error){ console.log(error) });
これは、http: //developer.chrome.com/extensions/webstoreのドキュメントの一部であり、 まったく機能していません。