【发布时间】:2018-06-13 09:48:14
【问题描述】:
我做了一个Chrome扩展,成功发布在Chrome网上商店,昨天有朋友安装了,今天启动Chrome的时候看到Unsupported extensions disabled:
常见的原因是什么?如何解决?
注意:扩展只是一个极简主义:
{
"name": "...",
"version": "1.0",
"description": "...",
"content_scripts": [
{
"css": ["fix.css"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_end"
}
],
"manifest_version": 2,
"permissions": ["*://*/*"]
}
以及修改某些元素设计的fix.css。扩展中没有其他内容。它仍然在 Chrome Webstore 上被接受/发布。
【问题讨论】:
标签: google-chrome google-chrome-extension chrome-web-store