Google Chrome扩展程序从源添加iframe

时间:2011-06-17 06:43:08

标签: google-chrome-extension

我正在尝试在iframe中加载myframe.html并将该iframe附加到当前页面的DOM中。如果myframe.html是我的扩展源的一部分,这可能吗?

我在想像

这样的东西
var iframe = document.createElement("iframe");
iframe.setAttribute("src", "myframe.html"); //what would be my path here, if this were possible?
document.body.appendChild(iframe);

1 个答案:

答案 0 :(得分:6)

应该可以使用content script将javascript注入页面,然后使用chrome.extension.getURL()方法获取您的扩展程序中托管的文件的正确网址