我得到擴展頁面上此錯誤:無法識別的清單鍵 'externally_connectable'
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"
]
}
如何解決這個問題呢?我serched比格上,沒有一個人寫了一篇關於這個錯誤...
嘗試使用清單加載擴展時,我不會收到任何錯誤。你正在運行哪個版本的Chrome? –
版本:26.0.1410.63 – paciock87