发布了一个新的Chrome扩展程序,当我尝试下载它进行测试时,它已被破坏

时间:2017-12-11 06:55:51

标签: javascript google-chrome google-chrome-extension

因此,我尝试为Chrome网上应用店创建一个新的Chrome扩展程序,所有内容似乎都可以正确上传和发布。

但是,现在当我尝试加载扩展程序的页面时,它已被破坏。

Chrome在控制台中显示此错误:

POST https://chrome.google.com/webstore/ajax/detail?hl=en-US&gl=US&pv=20170811&mce=atf%2Cpii%2Crtr%2Crlb%2Cgtc%2Chcn%2Csvp%2Cwtd%2Cnrp%2Chap%2Cnma%2Cc3d%2Cncr%2Cctm%2Cac%2Chot%2Ceuf%2Cmac%2Cfcf%2Crma%2Crae%2Cshr%2Cesl%2Cigb&id=gpgcbiaclhpaiknckdfdpbjkdgfkimmo&container=CHROME&_reqid=706656&rt=j 404 ()

我收到错误消息:

There was a problem loading the item. Please refresh the page and try again.

据我所知,我的manifest.json是正确的:

{
    "name": "Chinese Personalized Colors",
    "version": "0.0.0.1",
    "short_name": "CPC",
    "manifest_version": 2,
    "description": "Color code individual Chinese characters",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": ["http://*/*", "https://*/*", "file:///*/*", "\u003Call_urls>"],
            "css": ["mystyles.css"],
            "js": ["jquery-1.7.2.min.js", "highlight_class_version.js", "content.js"],
            "all_frames": true
        }

    ],
    "permissions": ["storage", "http://*/*"],
    "background": {
        "scripts": ["dict.js", "main.js", "background.js"]
    },
    "browser_action": {
        "default_title": "CPC"
    },
    "icons": {
        "128": "cpc-128px.png",
        "48": "cpc-48px.png",
        "16": "cpc-16px.png"
    },
    "author": "My Name",
    "web_accessible_resources": ["css/*", "js/*", "images/*"]
}

以上所有图片和所有文件都存放在上传到Google的zip中。

我尝试退出并重新登录,因为这是一些人推荐的建议。

可能有什么不对?可能只是该应用程序尚未发布足够长的时间才能正常工作?堆栈跟踪并没有真正告诉我太多,我找不到任何关于最近上传的文档,导致这样的错误。

1 个答案:

答案 0 :(得分:1)

它开始工作,我没有上传更改。据我所知,即使列表出现,有时候应用程序也需要时间传播到网上应用店。