perform startup initialization

This commit is contained in:
Lauchmelder 2022-03-21 14:03:34 +01:00
parent 335d611e57
commit fc6122c99c
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
2 changed files with 22 additions and 11 deletions

View file

@ -1,3 +1,14 @@
chrome.storage.local.get("token", (data) => {
if(data.token !== undefined)
return
chrome.storage.local.set({
"enabled": true,
"enabledVocab": true,
"enabledKanji": true
})
})
// Query a WaniKani API endpoint with the given token
const query = (token, url) =>
new Promise(async (resolve, reject) => {