Files
BetterSEQTA-Plus/src/manifests/firefox.ts
T
2024-08-29 17:04:46 +10:00

21 lines
497 B
TypeScript

import { createManifest } from '../../lib/createManifest'
import baseManifest from './manifest.json'
import pkg from '../../package.json'
const updatedFirefoxManifest = {
...baseManifest,
background: {
scripts: [baseManifest.background.service_worker],
},
action: {
"default_popup": "interface/index.html#settings",
},
browser_specific_settings: {
gecko: {
id: pkg.author.email,
},
}
}
export const firefox = createManifest(updatedFirefoxManifest, 'firefox')