Skip to content

Instantly share code, notes, and snippets.

@aryomuzakki
Created February 9, 2026 03:45
Show Gist options
  • Select an option

  • Save aryomuzakki/0ed26e5979035249ff010c5fe4f3d11a to your computer and use it in GitHub Desktop.

Select an option

Save aryomuzakki/0ed26e5979035249ff010c5fe4f3d11a to your computer and use it in GitHub Desktop.
manifest.json minimum
{
"id": "web-app-id",
"name": "My Web App Name",
"short_name": "Web App",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"start_url": "/",
"scope": "/",
"orientation": "portrait",
"dir": "ltr",
"categories": [
"utilities"
],
"display_override": [
"window-controls-overlay",
"standalone"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment