2019-11-10 17:38:47 +00:00
|
|
|
import {browser} from 'webextension-polyfill-ts';
|
|
|
|
|
|
|
|
// Add listeners to open the options page when:
|
2020-10-10 23:32:27 +00:00
|
|
|
// * The extension icon is clicked.
|
|
|
|
// * The extension is installed.
|
2019-11-10 17:38:47 +00:00
|
|
|
browser.browserAction.onClicked.addListener(openOptionsPage);
|
|
|
|
browser.runtime.onInstalled.addListener(openOptionsPage);
|
|
|
|
|
2020-10-10 23:32:27 +00:00
|
|
|
async function openOptionsPage() {
|
2019-11-10 17:38:47 +00:00
|
|
|
await browser.runtime.openOptionsPage();
|
|
|
|
}
|