const iframe = document.querySelector('iframe'); // Select the iframe
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
if (iframeDoc) {
const style = iframeDoc.createElement('style');
style.textContent = '[data-test-id="viral-link-forms"] { display: none; }';
iframeDoc.head.appendChild(style);
}