queue/source/content-scripts.ts

9 lines
234 B
TypeScript
Raw Normal View History

import {browser} from 'webextension-polyfill-ts';
2020-11-11 17:17:37 +00:00
import {initializeBackgroundMessageHandler} from '.';
initializeBackgroundMessageHandler();
(async () => {
await browser.runtime.sendMessage({action: 'queue update badge'});
})();