-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
103 lines (100 loc) · 2.42 KB
/
Copy pathmanifest.json
File metadata and controls
103 lines (100 loc) · 2.42 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "TaskPilot - Routine Planner",
"short_name": "TaskPilot",
"description": "Plan your week with smart timers and rewards",
"start_url": "/",
"display": "standalone",
"display_override": ["window-controls-overlay", "tabbed"],
"background_color": "#667eea",
"theme_color": "#6366f1",
"orientation": "portrait",
"scope": "/",
"categories": ["productivity", "utilities"],
"lang": "en-US",
"icons": [
{
"src": "icons/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "icons/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"shortcuts": [
{
"name": "Today's Tasks",
"short_name": "Today",
"description": "View today's scheduled tasks",
"url": "/?view=today",
"icons": [
{
"src": "icons/icon-192.png",
"sizes": "96x96",
"type": "image/png"
}
]
},
{
"name": "Add New Task",
"short_name": "Add Task",
"description": "Quickly add a new task",
"url": "/?view=add",
"icons": [
{
"src": "icons/icon-192.png",
"sizes": "96x96",
"type": "image/png"
}
]
}
],
"widgets": [
{
"name": "Today's Tasks",
"tag": "today-tasks",
"template": "grid",
"ms_ac_template": "today-widget",
"description": "See your today's tasks at a glance",
"screenshots": [
{
"src": "icons/widget-preview.png",
"sizes": "400x200",
"type": "image/png",
"label": "Today's Tasks Widget Preview"
}
],
"data": {
"tasks": "/api/widget/today"
},
"config": {
"size": "large"
}
},
{
"name": "Weekly Progress",
"tag": "weekly-progress",
"template": "value",
"ms_ac_template": "progress-widget",
"description": "Track your weekly completion rate",
"screenshots": [
{
"src": "icons/widget-progress.png",
"sizes": "400x200",
"type": "image/png",
"label": "Weekly Progress Widget"
}
],
"data": {
"progress": "/api/widget/progress"
},
"config": {
"size": "small"
}
}
]
}