paganofilippogmail.com / Healthline

// ==UserScript==
// @name         Healthline
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Filippo Pagano
// @match        https://www.healthline.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var el = document.getElementById("modal-host");
    if (el !== null && el.parentNode !== null) {
        el.parentNode.removeChild(el);
    }
    document.getElementsByTagName("body")[0].style.overflow = "auto";
    document.getElementsByTagName("body")[0].style.cursor = "auto";
})();