Reputation: 12735
I am trying to update my extension but I get following error message. Message clear but there is no line 30. What is the problem?
manifest.json
{
"name": "IdeaShop Information",
"description": "IdeaShop siteleri ile ilgili bilgileri gosterir",
"manifest_version": 2,
"version": "1.0",
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_title": "IdeaShop Information",
"default_icon": "icon.png",
"popup": "popup.html"
}
]
}
Directory Structure
Upvotes: 4
Views: 18901
Reputation: 1851
There seems to be an extra ]
at the end.
You can validate your json file at jsonlint.com
Upvotes: 5
Reputation: 4162
An extra square bracket at the last but one line caused the error. The line number displayed in such message is not correct.
Upvotes: 0