如何从Chrome扩展程序中的弹出窗口访问后台页面中的对象

时间:2012-06-11 20:40:00

标签: javascript google-chrome google-chrome-extension

在我正在开发的Chrome扩展程序中,我想在单击弹出窗口时访问在后台页面中创建和维护的数据结构。不幸的是,我是Javascript和Chrome扩展开发的新手,你能告诉我怎么做吗?这是否涉及在弹出窗口和后台页面之间传递消息? 感谢。

1 个答案:

答案 0 :(得分:9)

您可以编写三个这样的文件,以便从popup.html访问background.html中的数据结构:


//in popup.html
<script type="text/javascript" src="mainscript.js"></script>
<!-- JavaScript and HTML must be in separate files for security. -->

//in mainscript.js
chrome.extension.getBackgroundPage().data = 'your data';

//in background.html
<script type="text/javascript">
var data;
</script>

你需要一个manifest.json(可能使用browser_action而不是page_action):

....
,
"background_page": "background.html",
"page_action": {
    "default_icon": "your_icon.ico",
    "default_title": "Your title",
    "default_popup": "popup.html"
  },
....

编辑:对于Chrome扩展程序中的邮件传递,请参阅这些函数

http://code.google.com/chrome/extensions/extension.html#method-sendRequest

http://code.google.com/chrome/extensions/extension.html#event-onRequest

这个有用的描述:

http://code.google.com/chrome/extensions/messaging.html