Skip to content

Instantly share code, notes, and snippets.

@codeyourwayup
Created March 26, 2020 09:43
Show Gist options
  • Save codeyourwayup/1d4f92cb94a0dd55f78465df4174bbdf to your computer and use it in GitHub Desktop.
Save codeyourwayup/1d4f92cb94a0dd55f78465df4174bbdf to your computer and use it in GitHub Desktop.
async function mainFuction() {
var p = new Promise(function(resolve, reject){
chrome.storage.sync.get({"disableautoplay": true}, function(options){
resolve(options.disableautoplay);
})
});
const configOut = await p;
console.log(configOut);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment