我正在使用PWA应用程序,但是添加到主屏幕提示时出现问题。我需要从下面的应用程序图标中删除Chrome徽章。
这是我的 manifest.json
{
"short_name": "App Name",
"name": "App Name",
"icons": [
{
"src": "...",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "...",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "...",
"sizes": "64x64",
"type": "image/png"
}
],
"start_url": "/login",
"display": "standalone",
"theme_color": "#ffc107",
"background_color": "#ffffff"
}
我该怎么做?