soundwave/frontend/dist/manifest.json

136 lines
3.1 KiB
JSON
Raw Permalink Normal View History

{
"name": "SoundWave",
"short_name": "SoundWave",
"description": "Music streaming platform with local file support and offline playback",
"start_url": "/",
"display": "standalone",
"background_color": "#121212",
"theme_color": "#1976d2",
"orientation": "portrait-primary",
"scope": "/",
"icons": [
{
"src": "/img/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/img/icons/icon-192x192-maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/img/icons/icon-512x512-maskable.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"screenshots": [
{
"src": "/img/screenshot-wide.png",
"sizes": "1280x720",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "/img/screenshot-narrow.png",
"sizes": "540x720",
"type": "image/png",
"form_factor": "narrow"
}
],
"categories": ["music", "entertainment"],
"shortcuts": [
{
"name": "Home",
"short_name": "Home",
"description": "Open home page",
"url": "/",
"icons": [{ "src": "/img/icons/icon-192x192.png", "sizes": "192x192" }]
},
{
"name": "Search",
"short_name": "Search",
"description": "Search for music",
"url": "/search",
"icons": [{ "src": "/img/icons/icon-192x192.png", "sizes": "192x192" }]
},
{
"name": "Library",
"short_name": "Library",
"description": "View your library",
"url": "/library",
"icons": [{ "src": "/img/icons/icon-192x192.png", "sizes": "192x192" }]
},
{
"name": "Local Files",
"short_name": "Local Files",
"description": "View local files",
"url": "/local-files",
"icons": [{ "src": "/img/icons/icon-192x192.png", "sizes": "192x192" }]
}
],
"share_target": {
"action": "/share",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "title",
"text": "text",
"url": "url",
"files": [
{
"name": "audio",
"accept": ["audio/*"]
}
]
}
},
"prefer_related_applications": false
}