有人可以帮忙解决这个错误吗?当我尝试安装(拖放.crx文件)自定义chrome扩展时,它就出现了。该扩展程序在另一台计算机上正常运行。
{ "manifest_version": 2,
"name": "Foo",
"description": "Bar",
"version": "2.0",
"browser_action": {
"default_title": "Foo",
"default_icon": "icon.png",
"default_popup": "popup1.html"
},
"background": {
"scripts": [ "back.js" ]
},
"permissions": ["<all_urls>", "tabs", "activeTab", "storage"],
"content_scripts": [
{
"matches": ["*://foo.bar.ms/*"],
"js": ["websites/facebook/authorization.js"],
"run_at": "document_start"
},
{
"matches": ["*://*.facebook.com/*"],
"js": ["jquery-3.2.1.min.js", "utils.js", "websites/facebook/to_friends.js"],
"run_at": "document_idle",
"exclude_matches":["*://*.facebook.com/","*://*.facebook.com/?stype*","*://*.facebook.com/login.php*","*://*.facebook.com/pg/*"]
},
{
"matches": ["https://foo.bar/"],
"js": ["jquery-3.2.1.min.js", "utils.js", "websites/facebook/waiting.js"],
"run_at": "document_end"
},
{
"matches": ["*://*.facebook.com/pg/*"],
"js": ["jquery-3.2.1.min.js", "utils.js", "websites/facebook/to_group_posts.js"],
"run_at": "document_idle"
}
]
}
答案 0 :(得分:0)
这是由于用于打包分发扩展的浏览器的CRX格式与您的浏览器所使用的CRX格式不同导致的。
在Chrome 67中为使用Chrome 57的客户端打包扩展程序时遇到了这个问题。
该问题的解决方案是找出目标用户使用的Chrome版本,并将扩展程序打包为该版本。查看源代码后,Chrome 67似乎支持CRX2和CRX3格式。我认为chrome的早期版本使用的是CRX1。
Chrome商店分发扩展程序时,您不会遇到此问题,因为它们能够根据您的浏览器版本的要求使用CRX版本向您发送签名包。