I am setting some values at the option page. This is now working okay. But i am unable to access the data setted in the background.html or in the content script. I have read that something like this is possible with messaging but for me is the documentation a little bit hard to understand. If someone could point me out in the right direction it would be good.
Example story>
I am setting this value at the options page localStorage.setItem("somedata" , "true");
Then if i would access the same data on the page where the extension would be to run i get it like this:
localStorage.getItem("somedata");
And the value is null
.