generated from jeffgca/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest-chrome.json
55 lines (55 loc) · 1.13 KB
/
manifest-chrome.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
50
51
52
53
54
55
{
"description": "Developer tools for debugging ODD applications.",
"manifest_version": 3,
"name": "ODD Devtools",
"version": "0.2.0",
"version_name": "0.2.0 beta",
"author": "brian@fission.codes",
"homepage_url": "https://github.com/oddsdk/odd-devtools",
"icons": {
"16": "odd16.png",
"32": "odd32.png",
"48": "odd48.png",
"128": "odd128.png"
},
"background": {
"service_worker": "src/background/background.js",
"scripts": [
"src/events.js",
"src/utils.js"
]
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"js": ["src/content/page-load.js"]
}
],
"devtools_page": "src/devtools/devtools.html",
"host_permissions": [
"https://*/*",
"http://localhost/*",
"http://127.0.0.1/*"
],
"permissions": [
"scripting"
],
"externally_connectable": {
"matches": [
"https://*/*"
]
},
"web_accessible_resources": [
{
"resources": [
"src/content/content.js"
],
"matches": ["https://*/*"],
"extension_ids": []
}
]
}