Sword Master.io Basic Ad Hider

Ẩn banner và pop-up quảng cáo mà không hack/cheat

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Sword Master.io Basic Ad Hider
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Ẩn banner và pop-up quảng cáo mà không hack/cheat
// @author       You
// @match        *://*/* 
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Danh sách các class và ID thường dùng để chứa quảng cáo
    const adSelectors = [
        '#ad-container', 
        '.ad-box', 
        '.aip-ad', 
        '#game-ad', 
        '.preroll-ad-container',
        'iframe[src*="doubleclick"]', 
        'iframe[src*="ads"]',
        'iframe[src*="adsystem"]'
    ];

    // Hàm tìm và ẩn quảng cáo
    const hideAds = () => {
        adSelectors.forEach(selector => {
            const adElements = document.querySelectorAll(selector);
            adElements.forEach(el => {
                // Ẩn phần tử đi thay vì xóa hoàn toàn để tránh lỗi web
                if (el.style.display !== 'none') {
                    el.style.display = 'none';
                }
            });
        });
    };

    // Chạy hàm khi trang vừa tải xong
    window.addEventListener('load', hideAds);

    // Chạy lặp lại mỗi 2 giây để bắt các quảng cáo hiện ra sau
    setInterval(hideAds, 2000);
})();