-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.config.ts
39 lines (36 loc) · 1.11 KB
/
manifest.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { defineManifest } from '@crxjs/vite-plugin'
import packageJson from './package.json' assert { type: 'json' }
const { version } = packageJson
// Convert from Semver (example: 0.1.0-beta6)
const [major, minor, patch, label = '0'] = version
// can only contain digits, dots, or dash
.replace(/[^\d.-]+/g, '')
// split into version parts
.split(/[.-]/)
export default defineManifest(async (env) => {
const isDev = env.mode === 'development'
return {
manifest_version: 3,
name: isDev ? `[DEV] OmniATP` : `OmniATP`,
version: `${major}.${minor}.${patch}.${label}`,
version_name: version,
icons: {
'16': 'src/assets/icon_16.png',
'48': 'src/assets/icon_48.png',
'128': 'src/assets/icon_128.png',
},
omnibox: {
keyword: isDev ? 'atd' : 'at',
},
options_page: 'src/options.html',
background: {
service_worker: 'src/background/index.ts',
type: 'module',
},
permissions: ['tabs', 'notifications', 'storage'],
host_permissions: [],
content_security_policy: {
extension_pages: "script-src 'self'; object-src 'self';",
},
}
})