queue/source/content-scripts.ts

9 lines
215 B
TypeScript
Raw Normal View History

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