Mobile app version of vmapp.org
Login or Join
Nimeshi995

: Is there any way to display windows app available using manifest.json as it is displayed in android? I use the following manifest.json to display Android users that my website has an app available

@Nimeshi995

Posted in: #Windows

I use the following manifest.json to display Android users that my website has an app available on Google Play Store and when the click on install they are redirected to the app page on the store. Is there any way to do the same for Windows users as well?



Here's the manifest.jason file:

{
"short_name": "ChatAdda",
"name": "ChatAdda",
"theme_color": "#075E55",
"background_color": "#ffffff",
"display": "standalone",
"prefer_related_applications": true,
"related_applications": [
{
"platform": "play",
"id": "com.chatadda.free"
}
],
"icons": [
{
"src": "images/launcher-icon-1x.png",
"type": "image/png",
"sizes": "48x48"
},
{
"src": "images/launcher-icon-2x.png",
"type": "image/png",
"sizes": "96x96"
},
{
"src": "images/launcher-icon-3x.png",
"type": "image/png",
"sizes": "144x144"
},
{
"src": "images/launcher-icon-4x.png",
"type": "image/png",
"sizes": "192x192"
}
],
"start_url": "/?utm_source=launcher"
}

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Nimeshi995

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme