Hacker News new | ask | show | jobs
by dheera 1883 days ago
Just hit F12 and paste this into the console when they ask for it

    document.querySelector('.Modal').remove();
    document.body.classList.remove('Scroll--locked');
    document.body.style.overflow="scroll";
    document.body.style.position="static";
1 comments

Nice. I've been finding myself using the F12 tools more and more recently to tweak websites I use often - say to change the background colour or font. Not a web dev, but it's fun to look under the hood and play about with things.