mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2026-01-30 09:48:12 +01:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import browser from "webextension-polyfill";
|
|
|
|
browser.runtime.onInstalled.addListener((): void => {
|
|
console.log('🦄', 'extension installed');
|
|
});
|