Reputation: 1
{
"name": "Park_School",
"version":"2",
"manifest_version":"2",
"icons": { "128": "128.png" },
"app": {
"urls": [
"http://vle.parkcommunity.devon.sch.uk/"
],
"launch": {
"web_url": "http://vle.parkcommunity.devon.sch.uk/"
}
}
}
Obviously the manifest version is greater than zero but google chrome says it's not. Help?
Upvotes: 0
Views: 4711
Reputation: 4053
manifest_version should be an integer value. Please visit here for more detail.
so your configuration should be :
{
"name": "Park_School",
"version":"2",
"manifest_version":2,
"icons": { "128": "128.png" },
"app": {
"urls": [
"http://vle.parkcommunity.devon.sch.uk/"
],
"launch": {
"web_url": "http://vle.parkcommunity.devon.sch.uk/"
}
}
}
Upvotes: 1
Reputation: 348962
The value of "manifest_version"
must be an integer; you have provided a string.
To solve the problem, replace "manifest_version": "2"
with "manifest_version": 2
.
Upvotes: 3