mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02: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');
|
|
});
|