I'm trying to implement the automatic update feature of my Chrome extension. But for some reason it doesn't work. I have an updates.xml file hosted on GitHub and I see it gets downloaded (the download counter shows this). But the latest version of the extension is never downloaded.
My manifest.json looks like:
"version": "0.14.0",
"update_url": "https://github.com/downloads/PeeHaa/cv-pls/updates.xml",
And my updates.xml looks like:
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='bcbifciedokdgkokbbfippkbecnkpclj'>
<updatecheck codebase='https://github.com/downloads/PeeHaa/cv-pls/cv-pls.0.14.0.crx' version='0.14.0' />
</app>
</gupdate>
I've checked and double-checked the appid and the download URL and they both are correct.
Does anybody have any idea what's going wrong here? Does it have something to do with the fact it is hosted on GitHub?
