blob: 8d0f411be69f546f9cc90261a8b881c33f87ea6c [file] [log] [blame]
// IMPORTANT: keep this file in sync with sw.js
// When the extension gets updated, set new options to their default value.
chrome.runtime.onInstalled.addListener(function(details) {
if (details.reason == 'install' || details.reason == 'update') {
chrome.storage.sync.get(null, function(options) {
cleanUpOptions(options, false);
});
}
});
chrome.browserAction.onClicked.addListener(function() {
chrome.runtime.openOptionsPage();
});