当我尝试在https://chrome.google.com/webstore/developer/dashboard中上传我的Chrome扩展名.zip时,我收到错误:"清单中缺少default_locale字段。"但是定义了default_locale。
{
"name": "xxx",
"author": "xxx",
"version": "1.0.0",
"description": "__MSG_appDesc__",
"default_locale": "pt",
"permissions":
[
"bookmarks",
"storage",
"tabs"
],
"browser_action":
{
"default_title": "xxxx",
"default_icon": "/img/icon.png",
"default_popup": "/html/services.html"
},
"manifest_version": 2,
"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}
问题是什么?
答案 0 :(得分:2)
根据internationalization documentation,没有pt
区域设置,请使用以下方法之一:
pt_BR 葡萄牙语(巴西)
pt_PT 葡萄牙语(葡萄牙)
答案 1 :(得分:0)
default_locale
目录的扩展名中,必须 _locales
字段;没有_locales
目录的扩展名中必须没有它。