Chrome 网上商店:扩展被拒绝
Chrome web store: extension rejected
我几天前上传了我的第一个 chrome 扩展,它发布时没有任何问题,但今天我想发布一个更新(错误修复和添加一些功能)但是更新被拒绝了(黄镍参考)。
我试图找出我做错了什么,但是拒绝邮件非常简洁。他们说:
Your item does not meet the spam and Chrome Web Store position rule
然后他们给了我一些解决方案:
Solution
• Remove excess keywords from your item's listing in the Chrome Web Store.
• Do not attempt to manipulate the position of your element by any means.
• Do not post an item whose sole purpose is to launch another theme or another application, extension or web page.
我错过了点击并取消发布,我试图重新上传第一个版本(过去已经批准)但现在被拒绝了同样的原因。
我的扩展(可以找到源代码 here)只是一个交互式页面,用户可以在其中放置快捷方式列表、待办事项列表、文本标签等小部件。可以通过“Ctrl+Q”直接访问此页面.
我联系了支持人员,但众所周知,从他们那里得到答案可能需要很长时间,这就是我做这个的原因 post,希望有人可能已经知道这个问题或已经为什么会这样的线索。
Manifest.json
{
"name": "Homepage",
"version": "0.2",
"manifest_version": 2,
"background": {
"scripts": [
"app/background.js"
]
},
"browser_action": {
"default_title": "Options"
},
"options_page": "index.html",
"web_accessible_resources": [
"/static/css/content.css",
"/static/media/*"
],
"content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
"permissions": [
"https://besticon-demo.herokuapp.com/*",
"https://api.github.com/*",
"storage",
"history",
"tabs"
],
"commands": {
"open" : {
"suggested_key": {
"default": "Ctrl+Q"
},
"description": "Open HomePage"
}
},
"icons": {
"32": "./images/homepage-32.png",
"64": "./images/homepage-64.png",
"128": "./images/homepage-128.png"
}
}
我正在使用新的 Chrome 网上商店仪表板。
我证明了我正在使用的所有权限,只是解释了为什么我需要它们。
我说我正在使用远程代码(用于 css 东西)。
作为目标描述,我写了 This extensions allow the user to save all his shortcuts and access them directly using a command, or clicking on the extension button.
因此,我尝试上传我的扩展程序 20 多次,并进行了一些更改(较小),但我都收到了拒绝电子邮件。
昨天,当我发布这个问题时,我的扩展仍然被拒绝,此后我什么也没做,我收到了 0 封电子邮件,但是当我今天早上查看时,我尝试的最后一个版本已发布。
不知道为什么、如何或任何事情。所以我的建议是:等待并报告问题,但不要指望得到答复。
我几天前上传了我的第一个 chrome 扩展,它发布时没有任何问题,但今天我想发布一个更新(错误修复和添加一些功能)但是更新被拒绝了(黄镍参考)。
我试图找出我做错了什么,但是拒绝邮件非常简洁。他们说:
Your item does not meet the spam and Chrome Web Store position rule
然后他们给了我一些解决方案:
Solution
• Remove excess keywords from your item's listing in the Chrome Web Store.
• Do not attempt to manipulate the position of your element by any means.
• Do not post an item whose sole purpose is to launch another theme or another application, extension or web page.
我错过了点击并取消发布,我试图重新上传第一个版本(过去已经批准)但现在被拒绝了同样的原因。 我的扩展(可以找到源代码 here)只是一个交互式页面,用户可以在其中放置快捷方式列表、待办事项列表、文本标签等小部件。可以通过“Ctrl+Q”直接访问此页面.
我联系了支持人员,但众所周知,从他们那里得到答案可能需要很长时间,这就是我做这个的原因 post,希望有人可能已经知道这个问题或已经为什么会这样的线索。
Manifest.json
{
"name": "Homepage",
"version": "0.2",
"manifest_version": 2,
"background": {
"scripts": [
"app/background.js"
]
},
"browser_action": {
"default_title": "Options"
},
"options_page": "index.html",
"web_accessible_resources": [
"/static/css/content.css",
"/static/media/*"
],
"content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
"permissions": [
"https://besticon-demo.herokuapp.com/*",
"https://api.github.com/*",
"storage",
"history",
"tabs"
],
"commands": {
"open" : {
"suggested_key": {
"default": "Ctrl+Q"
},
"description": "Open HomePage"
}
},
"icons": {
"32": "./images/homepage-32.png",
"64": "./images/homepage-64.png",
"128": "./images/homepage-128.png"
}
}
我正在使用新的 Chrome 网上商店仪表板。
我证明了我正在使用的所有权限,只是解释了为什么我需要它们。
我说我正在使用远程代码(用于 css 东西)。
作为目标描述,我写了 This extensions allow the user to save all his shortcuts and access them directly using a command, or clicking on the extension button.
因此,我尝试上传我的扩展程序 20 多次,并进行了一些更改(较小),但我都收到了拒绝电子邮件。
昨天,当我发布这个问题时,我的扩展仍然被拒绝,此后我什么也没做,我收到了 0 封电子邮件,但是当我今天早上查看时,我尝试的最后一个版本已发布。
不知道为什么、如何或任何事情。所以我的建议是:等待并报告问题,但不要指望得到答复。