发现自己正在为 Chrome 编写扩展程序,作为我想要实现这一点的测试:
$(document).click(function(e) { alert('clicked'); });
但它没有按预期工作,有什么想法吗?
这是 manifest.json:
"name": "Test",
"version": "0.2",
"content_scripts": [
{
"all_frames": true,
"matches": ["*://mail.google.com/mail/*"],
"js": ["jquery-1.7.2.js", "test.js"]
}
]