我收到了以下错误Manifest is not valid JSON. Line: 5, column: 25, Syntax error.
我的 manifest.json 文件
{
"name":"webrun",
"manifest_version":0.5.1,
"description":"Let code run in web!",
"browser_action":{
"default_icon":"icon.png",
"default_title":"webrun",
"default_popup":"index.html"
}
}
答案 0 :(得分:1)
通常,http://jsonlint.com/可用于验证任何JSON文件。 0.5.1
是JSON中的无效值。
manifest_version
has to be an integer,可以取值1或2.检查Documentation。
要指定Chrome扩展程序的版本,请使用"version"
键,并引用值:
{
"name": "webrun",
"manifest_version": 2,
"version": "0.5.1",
"description": "Let code run in web!",
"browser_action": {
"default_icon": "icon.png",
"default_title": "webrun",
"default_popup": "index.html"
}
}