Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

    javascript:(function () {
        const rm = () => document.querySelectorAll('iframe')
            .forEach(f => f.remove());
        let timeout;
        const debouncedRm = () => {
            clearTimeout(timeout);
            timeout = setTimeout(rm, 100);
        };
        rm();
        new MutationObserver(debouncedRm)
            .observe(document.body, {
                childList: true, subtree: true
            });
    })();


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: