简体   繁体   中英

Chrome Extension Manifest.json invalid

Now why in the world is this invalid.

Manifest.json:

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

Error:

Failed to load extension from: ~/Desktop/AgarExpress
Manifest is not valid JSON. Line: 2, column: 15, Unexpected token.

Line that is invalid is

"name": “mything",

If to believe JsonLint “ != " . They dont have the same encoding, i remember i stumbled upon it as an issue with greek keyboard if I am not mistaken. This one is valid, also according to the text coloring of Stack Overflow:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM