我正在创建一个" url-shortcut"铬的扩展。在将其添加到浏览器时,我收到以下错误:
尝试安装此扩展程序时出现警告: *' app.linked_icons'需要谷歌Chrome开发者频道或更新版本,但这是稳定的频道。
这是我的 manifest.json :
{
"manifest_version": 2,
"name": "Google Fit",
"short_name": "Fit",
"description": "Google Fit",
"key": "Eg+2zP54mEfjusi2n1/gjO7gvXchXiDBSaWgxn2Sssg=",
"version": "1.0",
"icons": {
"128": "128.png"
},
"app": {
"urls": [
"https://fit.google.com/"
],
"launch": {
"web_url": "https://fit.google.com/"
},
"linked_icons": [ ]
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}
答案 0 :(得分:3)
linked_icons应该与下面的频道一样。
{
"manifest_version": 2,
"name": "Google Fit",
"short_name": "Fit",
"description": "Google Fit",
"key": "Eg+2zP54mEfjusi2n1/gjO7gvXchXiDBSaWgxn2Sssg=",
"version": "1.0",
"icons": {
"128": "128.png"
},
"app": {
"urls": [
"https://fit.google.com/"
],
"launch": {
"web_url": "https://fit.google.com/"
},
"linked_icons": [
"channel" : "dev"
]
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}
答案 1 :(得分:0)
大多数用户都在稳定频道上,因为这是可用的默认下载
如果您想使用 Dev 或 Canary 版本。有关使用不同发布渠道的更多信息,请访问 Chromium.org 的 Chrome Release Channels。