My Chrome Extension has a background script as well as a content script. The content script redirects to a new page (www.nike.com). The page adds 3 domains and a some data to the local storage. I want to access one of the domains storage.
I tried to use the Chrome.storage API inside my background script and in my content script, but I always receive an empty object.
I also added the onChange event listener, but this wasn't successful too. It seems that the local storage is empty. Is it even possible to access exactly this storage?