I have been using autoupdate ( http://developer.chrome.com/extensions/autoupdate ) with Chromium application and it seems to work great. However,I haven't been able to figure out how to automatically restart application after the update. The application is designed to run 24/7.
Asked
Active
Viewed 263 times
1 Answers
1
I think this should do it:
chrome.runtime.onUpdateAvailable.addListener(function () {
chrome.runtime.reload();
});
Add that to your background page, as described here.

mmocny
- 8,775
- 7
- 40
- 50