Chrome Extension Manifest.json invalid -


now why in world invalid.

manifest.json:

{      "name": “mything",      "version": "1",      "manifest_version": 2,      "content_scripts": [{          "js": [“engine.js”],          "matches": ["http://www.agar.io/*”]       }] } 

error:

failed load extension from: ~/desktop/agarexpress manifest not valid json. line: 2, column: 15, unexpected token. 

line invalid

"name": “mything", 

if believe jsonlint “ != " . dont have same encoding, remember stumbled upon issue greek keyboard if not mistaken. 1 valid, according text coloring of stack overflow:

{     "name": "mything ",     "version": "1",     "manifest_version": 2,     "content_scripts": [{         "js": ["engine.js"],         "matches": ["http://www.agar.io/*"]     }] } 

Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -