24 lines
720 B
TypeScript
24 lines
720 B
TypeScript
import browser from 'webextension-polyfill';
|
|
|
|
import {Settings} from '../settings/settings.js';
|
|
import {updateBadge} from '../utilities/badge.js';
|
|
import {History} from '../utilities/history.js';
|
|
import {browserActionClicked} from './browser-action.js';
|
|
import {initializeContextMenus} from './context-menus.js';
|
|
|
|
browser.runtime.onStartup.addListener(async () => {
|
|
console.debug('Clearing history.');
|
|
await History.clear();
|
|
await updateBadge(await Settings.fromSyncStorage());
|
|
});
|
|
|
|
browser.browserAction.onClicked.addListener(browserActionClicked);
|
|
|
|
browser.runtime.onInstalled.addListener(async () => {
|
|
if (import.meta.env.DEV) {
|
|
await browser.runtime.openOptionsPage();
|
|
}
|
|
});
|
|
|
|
initializeContextMenus();
|