I am updating the manifest version of the Chrome extension extension.
It works in my local machine.
When I try to install through the test group, it shows the error "Invalid manifest file."
Here is my manifest:
{
"name": "MercadoLivre - Sugestões de busca",
"description" : "Busque no MercadoLivre direto da barra de endereços",
"version": "0.12",
"manifest_version": 2,
"icons": { "128": "logo.png" },
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"omnibox": { "keyword" : "ml" },
"permissions": [
"http://suggest.mlapps.com/jm/*"
]
}
How can i fix this?
source
share