2

我在扩展页面上收到此错误:

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 上搜索,没有人写过这个错误......

4

2 回答 2

2

您运行的是 Chrome 26.0.1410.63,但此清单密钥是在版本 29 中添加的。

资料来源:

于 2013-10-01T16:55:44.090 回答
0

如果您在使用较新版本的 Chrome 时遇到此错误,您可能犯了与我相同的错误 - 我在键名的末尾有一个空格(引号内)。

于 2015-01-06T13:11:05.917 回答