18 lines
569 B
TypeScript
18 lines
569 B
TypeScript
"use strict";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const polyfill = require("webextension-polyfill");
|
|
|
|
export const {i18n} = polyfill;
|
|
export const {extension} = polyfill;
|
|
export const {notifications} = polyfill;
|
|
export const {browserAction} = polyfill;
|
|
export const {contextMenus} = polyfill;
|
|
export const {downloads} = polyfill;
|
|
export const {menus} = polyfill;
|
|
export const {runtime} = polyfill;
|
|
export const {storage} = polyfill;
|
|
export const {tabs} = polyfill;
|
|
export const {webNavigation} = polyfill;
|
|
export const {windows} = polyfill;
|