mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import 'unicorn.log';
|
|
import {browser} from 'webextension-polyfill-ts';
|
|
|
|
browser.runtime.onInstalled.addListener((): void => {
|
|
console.unicorn('extension installed');
|
|
});
|