我已经创建了一个应用,但它已经发布,但是当我检查页面Link时,它没有显示添加到Chrome。相反,它只显示访问网站。我想知道发生了什么。
应用程序的清单如下,我做错了吗?
{
"name": "Online Notepad",
"version": "4.1",
"manifest_version": 2,
"description": "Save your notes online for free and share them with friends!",
"app": {
"urls": ["https://notepad.pw/"],
"launch": {
"web_url": "https://notepad.pw/"
}
},
"icons": {
"128": "icon.png"
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}