Js: chrome storage get content
Advertisements I want to extract the content of dataflowid in the chrome storage but i get the output on the photo down bellow var a = chrome.storage.sync.get([‘dataflowid’]); console.log(a) >Solution : You need to log the value in the callback function (second parameter to get()) per the docs: chrome.storage.sync.get([‘dataflowid’], function(result) { console.log(‘Value currently is ‘ +… Read More Js: chrome storage get content