-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add update_url to manifest.json #36
base: master
Are you sure you want to change the base?
Conversation
Starting with Chrome 63 it is now required to have update_url filed in manifest.json. Without that filed Chrome will show "This extension may have been corrupted." More information can be found at: https://developer.chrome.com/apps/autoupdate
In the documentation I see: |
There's also this: "If you're hosting your own extension or app, you need to add the "update_url" field to your manifest.json file" |
I have added "update_url" field but still getting the error. Here is my manifest: "manifest_version": 2, |
This link is incorrect. You should point update_url to your updates.xml file. See my PR. |
Thanks for pointing me to the right direction. 1- Created a new file called updates.xml from updates-example.xml in PR |
Got it. Thanks |
Starting with Chrome 63 it is now required to have update_url filed in manifest.json. Without that filed Chrome will show "This extension may have been corrupted."
More information can be found at: https://developer.chrome.com/apps/autoupdate