Quora signup wall remover

Simply removes the signup wall from Quora.com

< Feedback on Quora signup wall remover

Review: Bad - script does not work

§
Posted: 2019-01-22

Page is still blurry

The login popup disappears, but the page is still blurry!

§
Posted: 2019-03-13

This works for me:

(function() {
   'use strict';

    let observer = new MutationObserver((mutationsList, observer) => {
        for (let mutation of mutationsList) {
            if (mutation.type === 'attributes' && mutation.attributeName === 'class' && mutation.target.classList.contains('signup_wall_prevent_scroll')) {
                document.body.classList.remove('signup_wall_prevent_scroll');
                observer.disconnect();
            }
        }
    });

    observer.observe(document.body, { attributes: true });

    document.body.querySelectorAll('div[id$=_signup_wall_wrapper]').forEach(div => div.remove());
})();

Post reply

Sign in to post a reply.