我确实在 content_scripts 中使用以下代码测试了我的 google chrome 扩展:
function test()
{
alert("test");
}
document.addEventListener("DOMContentLoaded", test, false);
显现:
{
"name": "Test",
"version": "1.0",
"manifest_version": 2,
"permissions": ["contextMenus", "tabs", "http://*/*", "https://*/*"],
"content_scripts": [{
"all_frames": true,
"js": [ "jquery-1.8.1.min.js","test.js"],
"matches": [ "http://*/*" ],
"run_at": "document_start"
}]
}
facebook或microsoft等所有网页都可以.....加载页面后,会弹出一个警报框,除了“Google.com”=>我访问了Google.com但没有警报框。我想知道为什么除了 Google.com 之外几乎所有页面都可以?那么,我需要在加载 Google.com 后捕获哪个 DOM 事件?
谢谢