chrome.storage.local.get({option: "default"}, function(data){
chrome.storage.local.set(data, /*...*/);
});
My question is when does the set function execute?
My intention is to set the initial values of the settings' variables during the onInstalled event, but avoid resetting them during a browser version update.