Наложение контента для расширения

  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);
Disgusted Dove