Move initialization to the bottom of the file.
This commit is contained in:
parent
a0a11e3647
commit
9f414731b9
|
@ -12,13 +12,6 @@ async function browserActionClicked() {
|
||||||
await browser.runtime.openOptionsPage();
|
await browser.runtime.openOptionsPage();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (import.meta.env.VITE_BROWSER === 'chromium') {
|
|
||||||
browser.action.onClicked.addListener(browserActionClicked);
|
|
||||||
} else {
|
|
||||||
browser.browserAction.onClicked.addListener(browserActionClicked);
|
|
||||||
void initializeContextMenus();
|
|
||||||
}
|
|
||||||
|
|
||||||
browser.runtime.onInstalled.addListener(async () => {
|
browser.runtime.onInstalled.addListener(async () => {
|
||||||
await initializeContextMenus();
|
await initializeContextMenus();
|
||||||
await updateBadge();
|
await updateBadge();
|
||||||
|
@ -94,3 +87,10 @@ browser.contextMenus.onClicked.addListener(async (info, tab) => {
|
||||||
|
|
||||||
await contextClicked(contextMenuIds, info, tab);
|
await contextClicked(contextMenuIds, info, tab);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (import.meta.env.VITE_BROWSER === 'chromium') {
|
||||||
|
browser.action.onClicked.addListener(browserActionClicked);
|
||||||
|
} else {
|
||||||
|
browser.browserAction.onClicked.addListener(browserActionClicked);
|
||||||
|
void initializeContextMenus();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue