client/public/manifest.json
{
"name": "unnote",
"short_name": "unnote",
"description": "The note taking app that doesn't suck.",
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#2c679f",
"background_color": "#f9f9f9",
"icons": [
{
"src": "icons/icon-48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "icons/icon-72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "icons/icon-96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "icons/icon-144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "icons/icon-168.png",
"sizes": "168x168",
"type": "image/png"
},
{
"src": "icons/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon-192-maskable.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"share_target": {
"action": "/share-target/",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "title",
"text": "text",
"url": "url",
"files": [
{
"name": "image",
"accept": ["image/*"]
}
]
}
}
}