Replace separated manifests with createManifest function.
This commit is contained in:
parent
46bacf20f4
commit
88a1066081
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"manifest_version": 3,
|
|
||||||
"name": "Queue",
|
|
||||||
"description": "A WebExtension for queueing links.",
|
|
||||||
"permissions": [
|
|
||||||
"contextMenus",
|
|
||||||
"storage",
|
|
||||||
"tabs"
|
|
||||||
],
|
|
||||||
"icons": {
|
|
||||||
"128": "assets/queue.png"
|
|
||||||
},
|
|
||||||
"action": {
|
|
||||||
"default_icon": {
|
|
||||||
"128": "assets/queue.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"options_ui": {
|
|
||||||
"page": "options/index.html",
|
|
||||||
"open_in_tab": true
|
|
||||||
},
|
|
||||||
"background": {
|
|
||||||
"service_worker": "background-scripts/initialize.ts",
|
|
||||||
"type": "module"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
{
|
|
||||||
"manifest_version": 2,
|
|
||||||
"name": "Queue",
|
|
||||||
"description": "A WebExtension for queueing links.",
|
|
||||||
"permissions": [
|
|
||||||
"contextMenus",
|
|
||||||
"storage",
|
|
||||||
"tabs"
|
|
||||||
],
|
|
||||||
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'",
|
|
||||||
"web_accessible_resources": [
|
|
||||||
"assets/**"
|
|
||||||
],
|
|
||||||
"icons": {
|
|
||||||
"128": "assets/queue.png"
|
|
||||||
},
|
|
||||||
"browser_action": {
|
|
||||||
"default_icon": {
|
|
||||||
"128": "assets/queue.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"options_ui": {
|
|
||||||
"page": "options/index.html",
|
|
||||||
"open_in_tab": true
|
|
||||||
},
|
|
||||||
"background": {
|
|
||||||
"scripts": [
|
|
||||||
"background-scripts/initialize.ts"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "{c3560e6b-00e5-4ab3-b89e-8a54ee5b2c9f}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
/* 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.2.5',
|
||||||
|
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;
|
||||||
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
import fsp from 'node:fs/promises';
|
|
||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
import url from 'node:url';
|
import url from 'node:url';
|
||||||
|
@ -10,38 +9,32 @@ import {defineConfig} from 'vite';
|
||||||
import preactPreset from '@preact/preset-vite';
|
import preactPreset from '@preact/preset-vite';
|
||||||
import webExtension from 'vite-plugin-web-extension';
|
import webExtension from 'vite-plugin-web-extension';
|
||||||
|
|
||||||
const currentDir = path.dirname(url.fileURLToPath(import.meta.url));
|
import createManifest from './source/manifest.js';
|
||||||
const sourceDir = path.join(currentDir, 'source');
|
|
||||||
|
|
||||||
const queueVersion = '0.2.5';
|
|
||||||
|
|
||||||
const targetBrowser = process.env.VITE_BROWSER ?? 'firefox';
|
const targetBrowser = process.env.VITE_BROWSER ?? 'firefox';
|
||||||
process.env.VITE_BROWSER = targetBrowser;
|
process.env.VITE_BROWSER = targetBrowser;
|
||||||
|
|
||||||
let webExtConfig;
|
const currentDir = path.dirname(url.fileURLToPath(import.meta.url));
|
||||||
|
const buildDir = path.join(currentDir, 'build', targetBrowser);
|
||||||
|
const sourceDir = path.join(currentDir, 'source');
|
||||||
|
|
||||||
|
fs.mkdirSync(path.join(currentDir, targetBrowser), {recursive: true});
|
||||||
|
|
||||||
|
const webExtConfig: Record<string, unknown> = {
|
||||||
|
browserConsole: true,
|
||||||
|
chromiumProfile: 'chromium/',
|
||||||
|
firefoxProfile: 'firefox/',
|
||||||
|
keepProfileChanges: true,
|
||||||
|
};
|
||||||
|
|
||||||
if (targetBrowser === 'chromium') {
|
if (targetBrowser === 'chromium') {
|
||||||
fs.mkdirSync(path.join(currentDir, 'chromium'), {recursive: true});
|
webExtConfig.startUrl = 'chrome://extensions/';
|
||||||
webExtConfig = {
|
webExtConfig.target = 'chromium';
|
||||||
browserConsole: true,
|
|
||||||
chromiumProfile: 'chromium/',
|
|
||||||
keepProfileChanges: true,
|
|
||||||
startUrl: 'chrome://extensions/',
|
|
||||||
target: 'chromium',
|
|
||||||
};
|
|
||||||
} else {
|
} else {
|
||||||
fs.mkdirSync(path.join(currentDir, 'firefox'), {recursive: true});
|
webExtConfig.startUrl = 'about:debugging#/runtime/this-firefox';
|
||||||
webExtConfig = {
|
webExtConfig.target = 'firefox-desktop';
|
||||||
browserConsole: true,
|
|
||||||
firefoxProfile: 'firefox/',
|
|
||||||
keepProfileChanges: true,
|
|
||||||
startUrl: 'about:debugging#/runtime/this-firefox',
|
|
||||||
target: 'firefox-desktop',
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildDir = path.join(currentDir, 'build', targetBrowser);
|
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
build: {
|
build: {
|
||||||
minify: false,
|
minify: false,
|
||||||
|
@ -55,19 +48,7 @@ export default defineConfig({
|
||||||
webExtension({
|
webExtension({
|
||||||
assets: 'assets',
|
assets: 'assets',
|
||||||
browser: targetBrowser,
|
browser: targetBrowser,
|
||||||
async manifest() {
|
manifest: () => createManifest(targetBrowser),
|
||||||
const manifest = JSON.parse(
|
|
||||||
await fsp.readFile(
|
|
||||||
path.join(sourceDir, `${targetBrowser}-manifest.json`),
|
|
||||||
// eslint-disable-next-line unicorn/prefer-json-parse-buffer
|
|
||||||
'utf-8',
|
|
||||||
),
|
|
||||||
) as Record<string, unknown>;
|
|
||||||
|
|
||||||
manifest.version = queueVersion;
|
|
||||||
|
|
||||||
return manifest;
|
|
||||||
},
|
|
||||||
webExtConfig,
|
webExtConfig,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue