Untitled
// Create a container for the overlay const overlayContainer = document.createElement('div'); overlayContainer.innerHTML = ` <iframe src="${chrome.runtime.getURL('overlay.html')}" style="border: none; width: 100%; height: 100%;"></iframe> `; overlayContainer.style.position = 'fixed'; overlayContainer.style.top = '0'; overlayContainer.style.right = '0'; overlayContainer.style.width = '300px'; overlayContainer.style.height = '200px'; overlayContainer.style.zIndex = '10000'; overlayContainer.style.pointerEvents = 'auto'; // Append the overlay to the document body document.body.appendChild(overlayContainer);
Leave a Comment