generated from Jonghakseo/chrome-extension-boilerplate-react-vite
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
39 lines (39 loc) · 1.02 KB
/
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
34
35
36
37
38
39
{
"name": "ZenCycle",
"description": "Regain your focus, regain your life",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"action": {
"default_icon": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png"
},
"default_title": "ZenCycle",
"default_popup": "pages/popup/index.html"
},
"permissions": [
"scripting",
"tabs",
"storage",
"notifications"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["pages/content/src/index.tsx"]
}],
"default_locale": "en",
"_locales_dir": "locales",
"web_accessible_resources": [{
"resources": ["chrome-extension/public/icon-128.png", "chrome-extension/public/times-up.wav"],
"matches": ["<all_urls>"]
}]
}