TuttoSport.com: Hide Annoying popups (the anti-adblock popup and others)

This script hides the annoying popups (the anti-adblock popup and others) that are shown in the web page.

// ==UserScript==
// @name           TuttoSport.com: Hide Annoying popups (the anti-adblock popup and others)
// @name:it        TuttoSport.com: Nasconde i popup fastidiosi (il popup anti-adblock ed altri)
// @description    This script hides the annoying popups (the anti-adblock popup and others) that are shown in the web page.
// @description:it Questo script nasconde i popup fastidiosi (il popup anti-adblock e altri) che vengono visualizzati nella pagina web.
// @match          https://*.tuttosport.com/*
// @grant          none
// @require        https://updategreasyfork.deno.dev/scripts/535551/1586801/HideAnnoyingPopupsLib.js
// @version        1.0.7
// @author         Cyrano68
// @license        MIT
// @namespace      https://gf.zukizuki.org/users/788550
// ==/UserScript==

(function()
{
    "use strict";

    const haplib = window.HideAnnoyingPopupsLib;

    const myVersion = GM_info.script.version;
    haplib.consoleLog(`==> TuttoSport_com_HideAnnoyingPopups: HELLO! Loading script (version: ${myVersion})...`);

    //document.addEventListener("DOMContentLoaded", onDOMContentLoaded);
    //window.addEventListener("load", onWindowLoaded);

    haplib.consoleLog(`==> TuttoSport_com_HideAnnoyingPopups: Using library 'HideAnnoyingPopupsLib' (version: ${haplib.getVersion()})`);
    const mutationObserverConfig  = {subtree: true, childList: true, attributes: true, attributeOldValue: true, attributeFilter: ["style"]};
    const mutatedNodesConfig      = {selectors: ["div.fc-dialog-container", "div#didomi-host", "div#videoFloat"]/*, onMutatedNode: onMutatedNode*/};
    const mutatedAttributesConfig = {attributeInfos: [{attributeName: "style", targetTagName: "BODY"}]/*, onMutatedAttribute: onMutatedAttribute*/};
    haplib.configure(mutationObserverConfig, mutatedNodesConfig, mutatedAttributesConfig);

    haplib.consoleLog("==> TuttoSport_com_HideAnnoyingPopups: Script loaded");
})();