页面加载时如何自动加载脚本?
我有这个扩展源:
{ "browser_action" : { "default_icon" : "icon.png"},
"description" : "Alert on Google Load",
"icons" : { "128" : "icon.png" },
"name" : "Auto alert",
"version" : "1.0",
"content_scripts": [
{
"matches": ["http://www.google*"],
"js": ["myscript.js"],
"run_at": ["document_end"]
}
],
}
现在 myscript.js 包括:
alert("hi")
但是当我加载 google.com 时,什么也没有发生。
多谢。