当我使用开发者工具查看我的扩展时,我只看到生成的背景文件 background.js;我的内容脚本没有出现在内容脚本选项卡下。任何想法为什么?清单的相关部分如下所示:
"content_scripts": [{
"run_at": "document_end",
"js": ["postMsg.js"],
"matches": ["https://groups.google.com/forum/*"]
}],
postMsg.js 被注入页面,但从未出现在开发者工具窗口中,所以我无法调试它。