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