Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/json/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
清单不是有效的JSON。第3行,第12列,语法错误。Chrome错误json文件_Json_Google Chrome - Fatal编程技术网

清单不是有效的JSON。第3行,第12列,语法错误。Chrome错误json文件

清单不是有效的JSON。第3行,第12列,语法错误。Chrome错误json文件,json,google-chrome,Json,Google Chrome,清单不是有效的JSON。第3行,第12列,语法错误 { "name": "invite all fb1", "version"; "1.0", "manifest_version": 2, "description": "Here you can test the new Invite all for the new invite box in fb", "browser_action": { "default_icon": "icon.png"

清单不是有效的JSON。第3行,第12列,语法错误

{
    "name": "invite all fb1",
    "version"; "1.0",
    "manifest_version": 2,
    "description": "Here you can test the new Invite all for the new invite box in fb",
    "browser_action": { 
    "default_icon": "icon.png"
    }
}


替换
与版本后的
<代码>“版本”:“1.0”,

您在
“版本”中有语法错误;“1.0”
。将其更改为
“版本”:“1.0”,


你有一个;而不是:在“版本”中,您可以使用JSONLint之类的JSON验证工具自己快速识别问题:
{
    "name": "invite all fb1",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Here you can test the new Invite all for the new invite box in fb",
    "browser_action": { 
    "default_icon": "icon.png"
    }
}
{
    "name": "invite all fb1",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Here you can test the new Invite all for the new invite box in fb",
    "browser_action": { 
    "default_icon": "icon.png"
    }
}