Hide Moviesmod Banner Ad Section

Hide banner-section on movie sites

// ==UserScript==
// @name         Hide Moviesmod Banner Ad Section
// @namespace    http://tampermonkey.net/
// @version      2025-06-01
// @description  Hide banner-section on movie sites
// @author       You
// @match        https://topmovies.tips/*
// @match        https://moviesmod.email/*
// @icon         https://moviesmod.email/wp-content/uploads/2022/10/moviesmod.png
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to hide the banner-section if it exists
    function hideBanner() {
        const banner = document.getElementById('banner-section');
        if (banner) {
            banner.style.display = 'none';
        }
    }

    // Run once DOM is ready
    document.addEventListener("DOMContentLoaded", hideBanner);

    // In case it's dynamically loaded later
    const observer = new MutationObserver(hideBanner);
    observer.observe(document.body, { childList: true, subtree: true });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址