-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
47 lines (47 loc) · 945 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
41
42
43
44
45
46
47
{
"name": "Prototype",
"short_name": "Prototype",
"description": "Front-End Prototyping Tool",
"author": {
"name": "Craig Wayne"
},
"start_url": "/",
"externals": ["/"],
"display": "fullscreen",
"theme_color": "#215A6D",
"background_color": "#215A6D",
"manifest_version": 2,
"icons": [
{
"src": "assets/images/nexus_prototype.png",
"type": "image/png",
"sizes": "128x128"
},
{
"src": "assets/images/nexus_prototype-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "assets/images/nexus_prototype-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"version": "1.0",
"app": {
"background": {
"scripts": [
"assets/js/background.js"
]
}
},
"offline_enabled": true,
"permissions": [
"storage",
"fileSystem",
"unlimitedStorage",
"http://*/",
"https://*/"
]
}