I am currently working on developing a Chrome extension for creating URL shortcuts. However, upon trying to add it to the browser, I encountered the following error:
There were warnings during the installation of this extension: * 'app.linked_icons' requires Google Chrome dev channel or newer, but this is the stable channel.
Here is an excerpt from my 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"
]
}