Skip to content

Instantly share code, notes, and snippets.

@tobinbc
Last active July 23, 2019 19:06
Show Gist options
  • Save tobinbc/4ae1555305366cc153f9bbff633a0691 to your computer and use it in GitHub Desktop.
Save tobinbc/4ae1555305366cc153f9bbff633a0691 to your computer and use it in GitHub Desktop.
let data = {}
try {
let json = document.getElementById('json').textContent
data = JSON.parse(json)
} catch (error) {
data = {
ok: false,
error: error.message
}
}
chrome.storage.local.set(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment