I am developing a browser extension for Chrome and Edge using webextension's polyfill. I intend to roll out few improvement related hot fixes and bugs after 1st release[that is to an already published app].
For Chrome I have found this:
https://developer.chrome.com/docs/extensions/mv2/hosting/#updating - As per this, the Chrome Browser periodically checks for new versions of installed extensions and updates them without user intervention.
But I have an additional question, will the updates be applied without user intervention even when there is change(addition and subtraction) in permissions
in the manifest
?
For Edge, I had found this:
https://learn.microsoft.com/en-us/microsoft-edge/extensions-chromium/publish/auto-update - This is completely different from the Chrome'e update philosophy. Here, there is a need of having update-url
as per the doc.
So, what's the correct behaviour in both cases.
PS: I am using manifest V3.