【发布时间】:2016-09-19 05:37:09
【问题描述】:
我有一个 Chrome 扩展程序,可以很好地上传到 Chrome 商店。我当前的清单文件发布在下面。它以 ANSI 格式保存,如以前有关此问题的帖子中所建议的那样。这是第三种变体,当我尝试安装时它们都会产生相同的错误消息:“无效清单”。没有真实信息。我已尝试等待 24 小时以使其按照之前帖子中的建议正确传播,但没有效果。
以前有人遇到过这个问题吗?
{
"manifest_version": 2,
"name": "Bamboo dialog fixer",
"version": "1.3",
"description": "This extension makes bamboo popup dialogs such a the performance dialogs fit the width of the screen.",
"icons": {"128": "BambooHR_FullSize.png"},
"content_scripts":
{
"css": "styles.css",
"matches": "https://*.bamboohr.co.uk/*"
}
}
【问题讨论】:
-
“content_scripts”、“css”、“matches”键是数组,所以添加
[和]如the docs所示。 -
我以为在我的 1.2 迭代中会这样,但我已经重写并再次上传,所以祈祷。
标签: google-chrome google-chrome-extension