MusicPlayer/web/manifest.json

36 lines
936 B
JSON
Raw Normal View History

2022-03-23 17:49:04 +00:00
{
2022-03-24 14:07:39 +00:00
"name": "Music Player",
2022-03-23 17:49:04 +00:00
"short_name": "music_web_player",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "New generation of music web player",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [
{
"src": "icons/Icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/Icon-512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/Icon-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/Icon-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}