Sorry, simplywall.st

simplywall.st hide banner

// ==UserScript==
// @name         Sorry, simplywall.st
// @namespace    simplywall.st
// @version      1.001
// @description  simplywall.st hide banner
// @author       Anton
// @match        https://simplywall.st/stocks/*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(
`
div[data-cy-id^='modal-ModalPortal-'] { display: none !important; }
#root { filter: none !important; }
`
    );
})();