我在扩展程序页面上收到此错误:
Unrecognized manifest key 'externally_connectable'.
这是我的清单:
{
"manifest_version": 2,
"name": "Publish",
"externally_connectable": {
"ids": ["*"],
"matches": ["*://*.example.it/*"]
},
"description": "example ext",
"version": "2.0",
"browser_action": {
"default_icon": "favicon.ico",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"http://www.example.it/", "tabs", "http://localhost/", "http://www.example.it/", "https://*/*", "http://*/*", "notifications", "background"
],
"web_accessible_resources": [
"img/example.png",
"img/bg_site.gif"
]
}
我该如何解决?我在BigG上发帖,没有人写过这个错误...
答案 0 :(得分:2)
您正在运行Chrome 26.0.1410.63,但此清单密钥已在版本29中添加。
来源:
答案 1 :(得分:0)
如果您使用较新版本的Chrome时出现此错误,则可能会犯同样的错误 - 我在键名末尾(引号内)有一个空格。