forked from LuHuangMSFT/pwa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
72 lines (72 loc) · 2.04 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
{
"background_color": "purple",
"description": "Test App. For testing 'url_handlers' web app manifest member.",
"display": "standalone",
"icons": [
{
"src": "https://cdn.glitch.com/c521d9a0-e779-4888-b5d6-4130c5fc57cf%2Ficon_512.png?v=1585600499036",
"sizes": "512x512",
"type": "image/png"
}
],
"short_name": "Test App",
"start_url": "./index.html",
"url_handlers": [
{
"origin": "https://mandymsft.github.io"
},
{
"origin": "https://luhuangmsft.github.io"
}
],
"shortcuts": [
{
"name": "Shortcut URL with %",
"description": "Test shortcut URL with %",
"url": "this test.html",
"icons": [
{
"src": "https://cdn.glitch.com/c521d9a0-e779-4888-b5d6-4130c5fc57cf%2Ficon_512.png?v=1585600499036",
"sizes": "512x512",
"type": "image/png"
}
]
},
{
"name": "Shortcut URL with special characters",
"description": "Test shortcut URL with special characters",
"url": "this'test~is*for:special(chars).html",
"icons": [
{
"src": "https://cdn.glitch.com/c521d9a0-e779-4888-b5d6-4130c5fc57cf%2Ficon_512.png?v=1585600499036",
"sizes": "512x512",
"type": "image/png"
}
]
},
{
"name": "Shortcut URL with $ and #",
"description": "Test shortcut URL with $ and #",
"url": "this$test.html#text",
"icons": [
{
"src": "https://cdn.glitch.com/c521d9a0-e779-4888-b5d6-4130c5fc57cf%2Ficon_512.png?v=1585600499036",
"sizes": "512x512",
"type": "image/png"
}
]
},
{
"name": "Target test page",
"description": "Go to the target page",
"url": "target.html",
"icons": [
{
"src": "https://cdn.glitch.com/c521d9a0-e779-4888-b5d6-4130c5fc57cf%2Ficon_512.png?v=1585600499036",
"sizes": "512x512",
"type": "image/png"
}
]
}
]
}