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);