マニフェストをリンクしましたが、ホームスクリーンからロードするときに私のウェブサイトに新しいスプラッシュスクリーン ( https://developers.google.com/web/updates/2015/10/splashscreen ) が表示されません。したがって、無効なマニフェストを作成したと思います。
index.php コードは次のとおりです。
<link rel="manifest" href="sharedcode/webappmanifest.json">
完全な webappmanifest.json コードは次のとおりです。
{
"short_name": "Igel100",
"name": "Igel100",
"start_url": "./?utm_source=web_app_manifest",
"icons": [
{
"src": "/projekte/igel100/data/webappicon.png",
"sizes": "512x512",
"type": "image/png"
},
],
"background_color": "#9fa8da",
"theme_color": "#ccccff",
"display": "standalone",
"orientation": "any"
}