Skip to content

Instantly share code, notes, and snippets.

@igorkosta
Created April 19, 2021 09:34
Show Gist options
  • Save igorkosta/001ecc26047a67888bb21baae0132857 to your computer and use it in GitHub Desktop.
Save igorkosta/001ecc26047a67888bb21baae0132857 to your computer and use it in GitHub Desktop.
PWA Manifest File
"name": "BANG",
"short_name": "BANG",
"description": "Neo Bang",
"start_url": "/",
"display": "standalone",
"orientation": "portrait",
"background_color": "#1B252C",
"theme_color": "#1B252C",
"icons": [
{
"src": "/icons/bang-maskable-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/icons/bang-maskable-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable any"
}
],
"shortcuts": [
{
"name": "Transfer",
"short_name": "Dough Disposal",
"description": "Send some dough to your peeps",
"url": "/send-money",
"icons": [
{
"src": "/img/shortcuts/black/send-money-4x.png",
"sizes": "96x96"
}
]
},
{
"name": "Overview",
"short_name": "My Dough",
"description": "Where is my money?",
"url": "/overview",
"icons": [
{
"src": "/img/shortcuts/black/overview-4x.png",
"sizes": "96x96"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment