I am creating a chrome extension that activates via a shortcut. Basically, a div is created on the page you are on that has a few questions. The answers are each with a checkbox.
A user can then choose an answer or a few, and will need to go to another page/tab and he/she can choose more options or less.
The issue is that once you activate this extension in the other tab, all the checkboxes that a user clicked on from the other tab are not passed to the new tab (though they are saved on that tab). Thus, my goal is to figure out how to cache that info locally so a user can go to different tabs and continue using those checkboxes and they will be saved across tabs.
I have been reading about Chrome.Storage (https://developer.chrome.com/extensions/storage.html) but could not figure out how the syntax will be like.
Was wondering if someone can point me to a better example or get me started here.
Cheers and thanks a lot, -Y