我正在制作Chrome套餐应用。这是我的manifest.json
"app": {
"launch": {
"local_path": "main.html"
}
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": ["jquery-1.7.min.js", "content_script.js"],
"all_frame": "true"
}
为什么我的内容脚本无法在main.html上运行?内容脚本可以在包应用程序上运行吗?