youtube-to-invidious/options.js
2022-07-15 15:46:52 +02:00

24 lines
558 B
JavaScript

function saveOptions(e) {
e.preventDefault();
browser.storage.sync.set({
url: document.querySelector("#url").value
});
}
function restoreOptions() {
function setCurrentChoice(result) {
document.querySelector("#url").value = result.url;
}
function onError(error) {
console.log(`Error: ${error}`);
}
let getting = browser.storage.sync.get("url");
getting.then(setCurrentChoice, onError);
}
document.addEventListener("DOMContentLoaded", restoreOptions);
document.querySelector("form").addEventListener("submit", saveOptions);