1
Fork 0
tildes-reextended/source/background.ts

12 lines
369 B
TypeScript
Raw Normal View History

2019-11-10 17:38:47 +00:00
import {browser} from 'webextension-polyfill-ts';
// Add listeners to open the options page when:
// * 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);
async function openOptionsPage() {
2019-11-10 17:38:47 +00:00
await browser.runtime.openOptionsPage();
}