我在扩展页面上收到此错误:
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 上搜索,没有人写过这个错误......