forked from llagerlof/fresh-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 862 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
34
35
36
37
38
39
{
"name": "Fresh Chrome Extension",
"description": "Fully functional, useful bare minimum Google Chrome extension boilerplate [Manifest V3].",
"homepage_url": "https://github.com/llagerlof/fresh-chrome-extension",
"version": "2.0.0",
"manifest_version": 3,
"action": {
"default_title": "execute.js will run (watch the Chrome DevTools' console)"
},
"content_scripts": [
{
"run_at" : "document_start",
"js": ["before.js"],
"matches": [
"https://*/*",
"http://*/*"
]
},
{
"run_at" : "document_idle",
"js": ["after.js"],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"scripting"
],
"host_permissions": [
"https://*/*",
"http://*/*"
]
}