Chrome扩展程序中页面和内容脚本之间的消息传递?

时间:2013-05-12 09:33:17

标签: google-chrome-extension

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

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

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

谢谢!

1 个答案:

答案 0 :(得分:0)