-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (29 loc) · 866 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
{
"manifest_version": 3,
"name": "Hermes IO",
"description": "Developer tool that allows debugging step by step the changes on websites that uses hermes-io.js in a nice/easy to use UI.",
"version": "1.3",
"icons": {
"16": "public/assets/images/icon_16.png",
"32": "public/assets/images/icon_32.png",
"48": "public/assets/images/icon_48.png",
"128": "public/assets/images/icon_128.png"
},
"devtools_page": "devtools.html",
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"src/content.js"
],
"matches": [
"<all_urls>"
]
}
]
}