hikerpig / Adblock block/Paywall Remover

Adding this bit of code (and the url at the top) makes it work for weather.com too

    } else if (url.includes('weather.com')) {
        waitForKeyElements('div[class^="sp_veil"]', function(element) {
            jQuery(element).hide();
        });
        waitForKeyElements('div[id^="sp_message_id"]', function(element) {
            jQuery(element).hide();
            jQuery('html, body').css('overflowY', 'auto');
        });
    }