Error Message: "The package has been deemed invalid due to the following reason: 'Localization was utilized, however default_locale was not specified in the manifest.'
Issue: I have developed a customized extension and defined a default locale, but Chrome is refusing to allow me to include it in the extension bar, displaying the error message mentioned above. I have also ensured that the _locales folder is present in my directory as required. Could this problem be related to the folder or its location?
Manifesto:
{
"name": "NAMENAMENAMENAME",
"short_name": "xxx",
"version": "0.0.3",
"manifest_version": 2,
"description": "This performs some specific function.",
"browser_action": {
"default_icon": {
"16": "icons/yokel16.jpg",
"48": "icons/yokel48.jpg",
"default_title": "CCJ",
"default_popup": "popup.html"
}
},
"icons": {
"16": "icons/yokel16.jpg",
"19": "icons/yokel19.jpg",
"48": "icons/yokel48.jpg",
"128": "icons/yokel128.jpg"
},
"default_locale": "en",
"background": {
"page": "popup.js",
"persistent": false
},
"permissions": [
"cookies",
"history",
"tabs",
"{{some URL}}"
]
}