您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 }); })();