Скрыть окно с подарками

Закрывает окно с подарком

// ==UserScript==
// @name         Скрыть окно с подарками
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Закрывает окно с подарком
// @author       Jango_Bimba
// @match        https://mangalib.me/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=mangalib.me
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    function removeGiftPopup() {
        const divs = document.querySelectorAll('div');
        for (let div of divs) {
            const text = div.textContent;
            if (text && text.includes('Вам доступен') && text.includes('подарок')) {
                div.remove();
            }
        }
    }

    removeGiftPopup();

    document.addEventListener('DOMContentLoaded', removeGiftPopup);

    new MutationObserver(removeGiftPopup).observe(document.body, {
        childList: true,
        subtree: true
    });
})();