Created
February 9, 2026 03:45
-
-
Save aryomuzakki/0ed26e5979035249ff010c5fe4f3d11a to your computer and use it in GitHub Desktop.
manifest.json minimum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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