0

我正在编写一个 chrome 扩展,它将下面的代码注入到打开的页面:

s = document.createElement "script"
s.src = "//example.com/my.js"
(document.head or document.documentElement).appendChild s

所以它可以加载我的javascript并在页面中运行它。但是在 my.js 完成它的工作之后,我如何向我的扩展发送消息?

谢谢!

4

1 回答 1

0

啊,我想我找到了答案: http ://code.google.com/chrome/extensions/content_scripts.html#host-page-communication

于 2013-05-12T09:39:14.357 回答