We are converting an extension from Chrome to Edge and the local storage is not behaving as expected.
In the extension we have an options page defined in the manifest as so:
"options_ui": {
"page": "options.html"
},
After converting to Edge using the "Microsoft Edge Extension Toolkit" the extension loads in Edge and we are able to view the options page and save the data. Looking at the debugger -> Local Storage we can see the options object saved.
In Chrome we are able to access this object from the background script and popup page however on Edge when I view the Local Storage on the Debugger for either the background or popup there is no object for the options in local storage. We are able to write to local storage from both but each one is entirely separate and we don't seem able to share data this way.
Is this intended on Edge and is there an alternative to make the options page data available to background and popup?