我正在创建Chrome扩展程序,但在创建扩展程序清单时遇到了麻烦。 Chrome给我一个错误,但我不知道自己在做什么错。
{
"manifest_version": 2,
"name" : "ColorPickerTry",
"version" : "1",
"description" : "A color picker extension",
"browser_action" : {
"default_popup" : "popup.html",
"default_title" : "Change BGcolor"
},
"permissions" : [
"notifications", "tabs"
],
"background" : {
"scripts" : ["content.js"],
"persistent" : false
},
"content_scripts" : [
{"matches" : [
"<all_urls>"
],
"js" : ["try.js", "jquery-3.4.1.min.js"],
"css" : ["try.css"]
}
]
}