-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.config.ts
56 lines (54 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { env } from 'node:process'
import type { ManifestV3Export } from '@crxjs/vite-plugin'
import packageJson from './package.json' assert { type: 'json' }
const { version, name, description, displayName } = 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 {
name: env.mode === 'staging' ? `[INTERNAL] ${name}` : displayName || name,
description,
// up to four numbers separated by dots
version: `${major}.${minor}.${patch}.${label}`,
// semver is OK in "version_name"
version_name: version,
manifest_version: 3,
// key: '',
action: {
default_popup: 'src/popup/index.html',
},
background: {
service_worker: 'src/background/index.ts',
type: 'module',
},
content_scripts: [
{
all_frames: false,
js: ['src/content-script/index.ts'],
matches: ['*://*/*'],
run_at: 'document_end',
},
],
offline_enabled: false,
host_permissions: [],
permissions: ['storage', 'tabs', 'background'],
web_accessible_resources: [
{
matches: ['*://*/*'],
resources: ['src/content-script/index.ts'],
},
{
matches: ['*://*/*'],
resources: ['src/content-script/iframe/index.html'],
},
],
icons: {
16: 'src/assets/logo.png',
24: 'src/assets/logo.png',
32: 'src/assets/logo.png',
128: 'src/assets/logo.png',
},
} as ManifestV3Export