Chrome扩展程序:在iframe中加载远程页面的内容

时间:2017-03-15 00:31:24

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

我正在尝试在iframe中加载外部网页。外部网页包含javascript和html。

当我尝试加载iframe时,出现以下错误:

  

未捕获的DOMException:阻止了一个包含起源的框架" https://www.example.com"从访问跨源框架。

这是内容脚本代码

let iframeEl = document.createElement('iframe');
iframeEl.src = "https://www.example.com";
document.body.appendChild(iframeEl);

如何通过交叉原点错误?

0 个答案:

没有答案