我在商店中发布Chrome应用程序时收到此消息 https://i.imgur.com/enWXwlc.png 我如何发布它以进行存储,每个人都可以将其安装在这样的https://chrome.google.com/webstore/detail/allcast-receiver/hjbljnpdahefgnopeohlaeohgkiidnoe?utm_source=www.crx4chrome.com窗口上 这是我的mannifest.json
{
"manifest_version": 2,
"name": "Mini Spotify Player",
"short_name": "Spotify Mini",
"description": "Mini chrome player for Spotify ",
"version": "1.0",
"icons": {
"128": "128.png"
},
"permissions": [
"webview",
"storage",
"<all_urls>",
"contextMenus",
"notifications",
"unlimitedStorage",
"app.window.fullscreen.overrideEsc"
],
"app": {
"background": {
"scripts": [ "background.js" ]
}
}
}