Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to auto-update a chrome extension published on the chrome web store?

The docs are very unclear about this. I get that you can autoupdate your extension by bumping the version number if you self host your extension. However what I don't know is if you can self host while still publishing to the chrome web store.

I can't believe that Google would make you manually update your extensions via a web interface.

like image 803
stanm87 Avatar asked Oct 30 '12 13:10

stanm87


1 Answers

When you publish to Chrome Web Store (CWS), CWS hosts your extension and you loose control over update_url attribute in manifest.json (it's overriten by CWS specific link). When you decide to make new version of your CWS-hosted extension available, you simply upload it (with higher version number) to CWS (via developer dashboard). After that, you just wait for Chrome auto-update feature to do all the work.

Each Chrome performs, in the background and without users direct permission, a routine checks in CWS (or somewhere else if extension is self-hosted) making sure that all extensions are up to date. If new version of any extension (or app) is available, Chrome performs an auto-update (if extension's permissions haven't increased).

like image 183
Konrad Dzwinel Avatar answered Oct 02 '22 15:10

Konrad Dzwinel