SmartMeeting/speakr/static/manifest.json

85 lines
2.1 KiB
JSON

{
"id": "com.speakr.app",
"name": "Speakr",
"short_name": "Speakr",
"description": "Speakr - Audio transcription and summarization",
"start_url": "/",
"scope": "/",
"display": "standalone",
"display_override": ["window-controls-overlay", "standalone"],
"background_color": "#000000",
"theme_color": "#000000",
"orientation": "any",
"prefer_related_applications": false,
"categories": ["productivity", "utilities", "business"],
"lang": "en",
"dir": "ltr",
"icons": [
{
"src": "/tool/speakr/static/img/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/tool/speakr/static/img/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/tool/speakr/static/img/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/tool/speakr/static/img/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/tool/speakr/static/img/icon-180x180.png",
"sizes": "180x180",
"type": "image/png",
"purpose": "any"
}
],
"shortcuts": [
{
"name": "New Recording",
"short_name": "New",
"description": "Upload or record new audio",
"url": "/#upload",
"icons": [{ "src": "/tool/speakr/static/img/icon-192x192.png", "sizes": "192x192" }]
},
{
"name": "View Gallery",
"short_name": "Gallery",
"description": "Access your recordings gallery",
"url": "/#gallery",
"icons": [{ "src": "/tool/speakr/static/img/icon-192x192.png", "sizes": "192x192" }]
}
],
"share_target": {
"action": "/#upload",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "title",
"text": "text",
"url": "url",
"files": [
{
"name": "shared_audio",
"accept": ["audio/*"]
}
]
}
},
"edge_side_panel": {
"preferred_width": 480
}
}