-
Notifications
You must be signed in to change notification settings - Fork 51
/
manifest.json
49 lines (49 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
{
"name": "Fresh Chrome Extension boilerplate",
"description": "Fully functional, useful bare minimum Google Chrome extension boilerplate [Manifest V3].",
"homepage_url": "https://github.com/llagerlof/fresh-chrome-extension",
"version": "3.1.0",
"manifest_version": 3,
"action": {
"default_title": "Fresh Chrome Extension boilerplate 3.1.0",
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
}
},
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
},
"content_scripts": [
{
"run_at" : "document_start",
"js": ["src/content/before.js"],
"matches": [
"https://*/*",
"http://*/*"
]
},
{
"run_at" : "document_idle",
"js": ["src/content/after.js"],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"permissions": [
"tabs",
"scripting"
],
"host_permissions": [
"https://*/*",
"http://*/*"
]
}