sokuku / Wanelo app dialog and footer killer

// ==UserScript==
// @name         Wanelo app dialog and footer killer
// @namespace    http://example.com/
// @version      1.0
// @description  Removes the annoying "App Required" popup dialog and huge footer from all pages
// @author       soKuku
// @match        https://wanelo.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener("load", function () {
        $( ".modal-container" ).remove();
        $( ".modal-backdrop" ).remove();
        $( ".sticky-sign-up-container" ).remove();
        $( "body.modal-open" ).css({
            overflow: 'auto'
        });
    });
})();