📌  相关文章
📜  扩展的内容脚本覆盖 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:56.890000             🧑  作者: Mango

代码示例1
const iframe = document.createElement("iframe")
  // iframe.setAttribute("src", "https://www.keybr.com/");
  iframe.setAttribute("style", `position:fixed; z-index:5055; display:block; top: 0;left: 0;border:none; width:100%; height:100%; background:${util.OVERLAY_COLOR}`);
  iframe.setAttribute("scrolling", "no");
  iframe.setAttribute("frameborder", "0");
  iframe.setAttribute('onclick','alert("okay")')
  document.body.appendChild(iframe);