Files
GlowTrack/apps/web/static/manifest.webmanifest
2025-09-29 23:44:41 -06:00

130 lines
2.9 KiB
JSON

{
"name": "GlowTrack - Mood & Habit Wellbeing Grid",
"short_name": "GlowTrack",
"description": "Track your mood and habits with a beautiful, accessible wellbeing grid visualization. Local-first data storage with export capabilities.",
"start_url": "/",
"scope": "/",
"display": "standalone",
"orientation": "portrait-primary",
"background_color": "#ffffff",
"theme_color": "#3b82f6",
"categories": ["health", "lifestyle", "productivity", "utilities"],
"lang": "en-US",
"dir": "ltr",
"prefer_related_applications": false,
"icons": [
{
"src": "/favicon.png",
"sizes": "32x32",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"screenshots": [
{
"src": "/screenshot-wide.png",
"sizes": "1280x720",
"type": "image/png",
"form_factor": "wide",
"label": "GlowTrack wellbeing grid with mood and habit tracking"
},
{
"src": "/screenshot-narrow.png",
"sizes": "750x1334",
"type": "image/png",
"form_factor": "narrow",
"label": "GlowTrack mobile interface"
}
],
"shortcuts": [
{
"name": "Add Today's Entry",
"short_name": "Add Entry",
"description": "Quickly add mood and habits for today",
"url": "/?action=add-today",
"icons": [
{
"src": "/icon-add.png",
"sizes": "192x192",
"type": "image/png"
}
]
},
{
"name": "View Grid",
"short_name": "Grid",
"description": "View your wellbeing grid visualization",
"url": "/?view=grid",
"icons": [
{
"src": "/icon-grid.png",
"sizes": "192x192",
"type": "image/png"
}
]
},
{
"name": "Export Data",
"short_name": "Export",
"description": "Export your wellbeing data",
"url": "/?action=export",
"icons": [
{
"src": "/icon-export.png",
"sizes": "192x192",
"type": "image/png"
}
]
}
],
"share_target": {
"action": "/share",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "title",
"text": "text",
"url": "url",
"files": [
{
"name": "file",
"accept": ["application/json", ".json"]
}
]
}
},
"file_handlers": [
{
"action": "/",
"accept": {
"application/json": [".json"],
"text/csv": [".csv"]
}
}
],
"protocol_handlers": [
{
"protocol": "web+glowtrack",
"url": "/?import=%s"
}
],
"edge_side_panel": {
"preferred_width": 400
},
"launch_handler": {
"client_mode": "focus-existing"
}
}