-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
40 lines (40 loc) · 966 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
40
{
"name": "Zoo Diff Viewer",
"description": "Zoo Diff Viewer Chrome Extension",
"version": "0.8.1",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Open the settings"
},
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://github.com/",
"https://api.github.com/",
"https://media.githubusercontent.com/",
"https://api.kittycad.io/"
],
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"src/chrome/content.ts"
],
"all_frames": false,
"run_at": "document_end"
}
],
"background": {
"service_worker": "src/chrome/background.ts",
"type": "module"
}
}