youtube-to-invidious/options.js

24 lines
558 B
JavaScript
Raw Normal View History

2022-07-15 13:46:52 +00:00
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);