mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
23 lines
570 B
TypeScript
23 lines
570 B
TypeScript
import { createManifest } from "../../lib/createManifest";
|
|
import baseManifest from "./manifest.json";
|
|
import pkg from "../../package.json";
|
|
|
|
const updatedFirefoxManifest = {
|
|
...baseManifest,
|
|
version: pkg.version,
|
|
description: pkg.description,
|
|
background: {
|
|
scripts: [baseManifest.background.service_worker],
|
|
},
|
|
action: {
|
|
default_popup: "interface/index.html#settings",
|
|
},
|
|
browser_specific_settings: {
|
|
gecko: {
|
|
id: "betterseqta@betterseqta.com",
|
|
},
|
|
},
|
|
};
|
|
|
|
export const firefox = createManifest(updatedFirefoxManifest, "firefox");
|