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

时间:2014-10-25 16:51:06

标签: json google-chrome

Manifest是无效的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"
    }
}

http://imgur.com/CxAUSlE

2 个答案:

答案 0 :(得分:0)

{
    "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"
    }
}

在版本之后用;替换:"version": "1.0",

答案 1 :(得分:0)

"version"; "1.0"中存在语法错误。将其更改为"version": "1.0",

{
    "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"
    }
}