chore: add sample listener to background script

This commit is contained in:
abhijithvijayan 2020-01-27 21:26:49 +05:30
parent 4894a917ca
commit 30990f3bd7

View File

@ -1 +1,5 @@
console.log('this is background scripts file');
import { browser } from 'webextension-polyfill-ts';
browser.runtime.onInstalled.addListener((): void => {
console.log('extension installed');
});