Chrome app ID for extensions affects sync store

I am developing a Chrome bookmark extension. In the application, I use chrome.storage.sync. However, when I test the installation of the application from a zip file, I get different application identifiers: s. This seems to affect the timing, and so I'm wondering if there is a way around this.

0
source share
1 answer

You need to set the appropriate value for the property keyin the manifest (and make sure you always use the same .pem file to package your extension).
Quoting documents in the manifest property : key

, .

, .crx( ). Default/Extensions/<extensionId>/<versionString>/manifest.json. , .

+1

All Articles