51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
export default function createManifest(
|
|
target: string,
|
|
): Record<string, unknown> {
|
|
const manifest: Record<string, unknown> = {
|
|
name: 'Queue',
|
|
description: 'A WebExtension for queueing links.',
|
|
version: '0.3.1',
|
|
permissions: ['contextMenus', 'storage'],
|
|
options_ui: {
|
|
page: 'options/index.html',
|
|
open_in_tab: true,
|
|
},
|
|
};
|
|
|
|
const icons = {
|
|
128: 'assets/queue.png',
|
|
};
|
|
|
|
manifest.icons = icons;
|
|
|
|
const browserAction = {
|
|
default_icon: icons,
|
|
};
|
|
|
|
const backgroundScript = 'background-scripts/initialize.ts';
|
|
|
|
if (target === 'chromium') {
|
|
manifest.manifest_version = 3;
|
|
manifest.action = browserAction;
|
|
manifest.background = {
|
|
service_worker: backgroundScript,
|
|
type: 'module',
|
|
};
|
|
} else {
|
|
manifest.manifest_version = 2;
|
|
manifest.browser_action = browserAction;
|
|
manifest.background = {
|
|
scripts: [backgroundScript],
|
|
};
|
|
manifest.applications = {
|
|
gecko: {
|
|
id: '{c3560e6b-00e5-4ab3-b89e-8a54ee5b2c9f}',
|
|
},
|
|
};
|
|
}
|
|
|
|
return manifest;
|
|
}
|