forked from adolfdaniel/widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.webmanifest
79 lines (78 loc) · 1.78 KB
/
manifest.webmanifest
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
76
77
78
79
{
"short_name": "Widgets App",
"name": "Widgets Sample App (no widget icon)",
"display": "standalone",
"display_override": ["window-controls-overlay"],
"start_url": "./index.html",
"icons": [
{
"src": "icons/500x500.png",
"sizes": "400x400"
}
],
"widgets": [
{
"name": "Max AC- Single",
"tag": "max_ac",
"template": "test",
"data": "cards/data.json",
"type": "application/json",
"ms_ac_template": "cards/test.ac.json",
"short_name": "Max",
"description": "A widget that doesn't do much of anything yet.",
"screenshots": [
{
"src": "icons/screenshot.png",
"sizes": "400x600",
"label": "Test screenshot"
}
],
"backgrounds": [
{
"src": "icons/background.png",
"sizes": "600x400"
}
],
"auth": false,
"update": 100,
"actions": [
{
"action": "buttonClick",
"title": "Button Click"
}
]
},
{
"name": "Max AC- Multiple",
"tag": "max_ac_multiple",
"template": "test",
"data": "cards/data.json",
"type": "application/json",
"ms_ac_template": "cards/test.ac.json",
"short_name": "Max",
"description": "A widget that doesn't do much of anything yet.",
"screenshots": [
{
"src": "icons/screenshot.png",
"sizes": "600x400",
"label": "Test screenshot"
}
],
"backgrounds": [
{
"src": "icons/background.png",
"sizes": "600x400"
}
],
"auth": false,
"multiple": true,
"update": 100,
"actions": [
{
"action": "buttonClick",
"title": "Button Click"
}
]
}
]
}