-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 940 Bytes
/
manifest.json
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
{
"manifest_version": 3,
"name": "Chrome Extension with React & Vite",
"version": "REPLACED-BY-VITE",
"description": "A chrome extension boilerplate built with React 18 and Vite 5",
"icons": {
"34": "assets/icons/icon-34.png",
"128": "assets/icons/icon-128.png"
},
"action": {
"default_title": "Chrome Extension React",
"default_popup": "src/popup/index.html",
"default_icon": "assets/icons/icon-34.png"
},
"content_scripts": [
{
"js": ["src/content/index.ts"],
"matches": ["*://*/*"]
}
],
"background": {
"service_worker": "src/background/index.ts"
},
"web_accessible_resources": [
{
"resources": ["assets/icons/*.png"],
"matches": [],
"extension_ids": []
}
],
"permissions": ["storage", "tabs", "activeTab"],
"host_permissions": []
}