Hacker News new | ask | show | jobs
by username223 3094 days ago
You need to up your crap-blocking game. This bookmarklet can help:

    javascript:(function() {
        (function () {
            var i, elements = document.querySelectorAll('body *');
            for (i = 0; i < elements.length; i++) {
                if (getComputedStyle(elements[i]).position === 'fixed') {
                    elements[i].parentNode.removeChild(elements[i]);}}})()})()