我有一个 chrome 扩展。manifest.json 是
"content_scripts": [
{
"all_frames": true,
"js": [ "content.js" ],
"css": ["style.css"],
"matches": [ "*://www.facebook.com/*"],
"run_at": "document_start"
},
content.js 只是
console.log("say hi");
控制台是请看这张图片http://i.imgur.com/SuBnbnT.png
它叫了四次。它只是发生在 facebook.com,没有发生在其他网站,例如 www.google.com。任何的想法?谢谢。