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"
}
}
答案 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"
}
}