Hey, guys! I've been trying to write some code for a Chrome App, but every time I try to finally upload it, I receive an error message:
Manifest is not valid JSON. Line: 1, column: 2, Dictionary keys must be quoted.
I've searched for hours trying to troubleshoot this, but have yet to resolve the issue. I have gone through and individually retyped each quotation mark and comma. It also passes a JSON tester so I'm really at a loss. Any help would be really appreciated - thanks!
{
"name": "Netflix",
"description": "Netflix",
"version": "1.0",
"icons": {
"128": "128.png"
},
"app": {
"urls": [
"http: //movies.netflix.com/wihome"
],
"launch": {
"web_url": "http: //movies.netflix.com/home"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}