Newwebshop/public/manifest.json

149 lines
3.3 KiB
JSON

{
"name": "Webshop System",
"short_name": "Webshop",
"description": "Ein freies Shopsystem ohne Registrierungszwang",
"start_url": "/",
"display": "standalone",
"background_color": "#667eea",
"theme_color": "#764ba2",
"orientation": "portrait-primary",
"scope": "/",
"lang": "de",
"dir": "ltr",
"categories": ["shopping", "business", "ecommerce"],
"icons": [
{
"src": "/img/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/img/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable any"
}
],
"shortcuts": [
{
"name": "Produkte",
"short_name": "Shop",
"description": "Produktkatalog durchsuchen",
"url": "/products",
"icons": [
{
"src": "/img/icons/shortcut-shop.png",
"sizes": "96x96"
}
]
},
{
"name": "Warenkorb",
"short_name": "Cart",
"description": "Warenkorb anzeigen",
"url": "/cart",
"icons": [
{
"src": "/img/icons/shortcut-cart.png",
"sizes": "96x96"
}
]
},
{
"name": "Konto",
"short_name": "Account",
"description": "Kundenkonto verwalten",
"url": "/account",
"icons": [
{
"src": "/img/icons/shortcut-account.png",
"sizes": "96x96"
}
]
}
],
"screenshots": [
{
"src": "/img/screenshots/homepage-mobile.png",
"sizes": "390x844",
"type": "image/png",
"form_factor": "narrow",
"label": "Startseite"
},
{
"src": "/img/screenshots/products-mobile.png",
"sizes": "390x844",
"type": "image/png",
"form_factor": "narrow",
"label": "Produktkatalog"
},
{
"src": "/img/screenshots/cart-mobile.png",
"sizes": "390x844",
"type": "image/png",
"form_factor": "narrow",
"label": "Warenkorb"
}
],
"related_applications": [],
"prefer_related_applications": false,
"edge_side_panel": {
"preferred_width": 400
},
"launch_handler": {
"client_mode": "navigate-existing"
},
"handle_links": "preferred",
"capture_links": "new-client",
"file_handlers": [
{
"action": "/upload",
"accept": {
"image/*": [".jpg", ".jpeg", ".png", ".gif"]
}
}
],
"protocol_handlers": [
{
"protocol": "web+webshop",
"url": "/product/%s"
}
]
}