Stores data in chrome sync
Chrome Extension Extension provides CustomEvents to access Chrome Storage from a JS on a Page
Usage:
ChromeStorage:Ready fired when Chrome extension loaded
To Load data from Chrome Sync Storage JS should fire a ChromeStorage:loadCollection event with data: { detail: collectionName: [] } When collection is loaded extension will fire ChromeStorage:CollectionLoaded event with data { detail: collectionName: [...collection data ...] }
To Save data in Chrome Sync Storage JS should fire a ChromeStorage:saveCollection event with data: { detail: collectionName: [...collection data ...] } When collection is loaded extension will fire ChromeStorage:CollectionSaved event with data { detail: collectionName: [...collection data ...] }