我正在尝试在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);
答案 0 :(得分:6)
应该可以使用content script将javascript注入页面,然后使用chrome.extension.getURL()
方法获取您的扩展程序中托管的文件的正确网址