-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 814 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
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"version": "0.0.0",
"manifest_version": 3,
"name": "Next DevTools",
"minimum_chrome_version": "88.0",
"devtools_page": "src/next-devtools.html",
"action": {
"default_icon": {
"16": "public/icon.png",
"32": "public/icon.png",
"48": "public/icon.png",
"128": "public/icon.png"
},
"default_popup": "src/popup.html"
},
"background": {
"service_worker": "src/service-worker.ts"
},
"permissions": ["tabs", "scripting"],
"host_permissions": ["https://*/*", "http://*/*"],
"web_accessible_resources": [
{
"resources": [
"src/next-devtools.html",
"src/popup.html",
"src/panel.html"
],
"matches": ["<all_urls>"],
"extension_ids": []
}
]
}