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

问题描述 投票:-4回答:2

清单是无效的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

json google-chrome
2个回答
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"
    }
}

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",

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.