-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
75 lines (75 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Hoch's PWA",
"short_name": "Hoch's PWA",
"description": "Test app for exercising PWA functionality",
"categories": ["utilities", "productivity"],
"start_url": "./?custom_param=start_url_value",
"theme_color": "#8E2C54",
"scope":".",
"background_color": "#2C488E",
"display": "minimal-ui",
"orientation": "portrait",
"icons": [
{
"src": "HochsPWA_44.png",
"sizes": "44x44",
"type": "image/png"
}, {
"src": "HochsPWA_150.png",
"sizes": "150X150",
"type": "image/png"
}
],
"share_target": {
"action": "./?custom_param=share_target_value",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mapped_title",
"text": "mapped_text",
"url": "mapped_url",
"files": [
{
"name": "mapped_files",
"accept": ["image/jpeg"]
}
]
}
},
"file_handlers": [
{
"action": "./?custom_param=csv_file_handler",
"accept": {
"text/csv": ".csv"
}
},
{
"action": "/?custom_param=jpeg_file_handler",
"accept": {
"image/jpeg": [ ".jpg", ".jpeg" ]
}
},
{
"action": "./?custom_param=graph_file_handler",
"accept": {
"application/vnd.grafr.graph": [ ".grafr", ".graf" ],
"application/vnd.alternative-graph-app.graph": ".graph"
}
}
],
"related_applications": [
{
"platform": "browser",
"id": "Microsoft.MicrosoftEdge.Stable_8wekyb3d8bbwe"
},
{
"platform": "browser",
"id": "Microsoft.MicrosoftEdge.Canary_8wekyb3d8bbwe"
},
{
"platform": "play",
"id": "android-mhochk-app",
"url": "https://mhochk.github.io/hello-pwa"
}
]
}