我的manifest.json文件中出现语法错误
清单:第7行,第1列,语法错误。
我正在尝试删除文件中的所有数据,并且遇到相同的错误。
看看我的manifest.json
{
"name" : "VIDEOFUTUR",
"short_name" : "VF",
"description" : "Télécom",
"start_url" : "index.php",
"scope" : "/",
"display" : "fullscreen",
"orientation" : "any",
"lang" : "French",
"icons" : [
{
"src": "https://lafibrevideofutur.fr/img/favicon.png",
"sizes": "256x256"
}],
}
答案 0 :(得分:0)
您是否在icons
之后发现了逗号?
应该是:
{
"name": "VIDEOFUTUR",
"short_name": "VF",
"description": "Télécom",
"start_url": "index.php",
"scope": "/",
"display": "fullscreen",
"orientation": "any",
"lang": "French",
"icons": [
{
"src":"https://lafibrevideofutur.fr/img/favicon.png",
"sizes":"256x256"
}
]
}
下次只需使用任何online tool来验证JSON。