-
Notifications
You must be signed in to change notification settings - Fork 425
/
manifest.json
47 lines (47 loc) · 1.19 KB
/
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
{
"lang": "en",
"name": "Montage Popcorn",
"short_name": "PopCorn",
"description": "Popcorn is a movie discovery application made using MontageJS",
"start_url": "./?utm_source=homescreen",
"icons": [
{
"src": "./assets/icons/apple-touch-icon-120x120-precomposed.png",
"sizes": "120x120",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-152x152-precomposed.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "./assets/icons/apple-touch-icon-76x76-precomposed.png",
"sizes": "76x76",
"type": "image/png"
}
],
"theme_color": "#000",
"background_color": "#000",
"display": "standalone",
"montage_manifest_version": 1,
"files": {
"locale": {
"directory": true,
"files": {
"en": {
"directory": true,
"files": {
"messages.json": null
}
},
"fr": {
"directory": true,
"files": {
"messages.json": null
}
}
}
}
}
}