Universal Ad Blocker

Blocks ads on all sites

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         Universal Ad Blocker
// @namespace    http://tampermonkey.net/
// @version      0.6
// @description  Blocks ads on all sites
// @match        *://*/*  // Apply to all URLs
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to handle ad elements
    function blockAds() {
        // List of common ad container selectors
        const adSelectors = [
            'iframe[src*="ads"]', 
            'iframe[src*="advertising"]',
            'iframe[src*="ad"]',
            'div[id*="ad"]',
            'div[class*="ad"]',
            'div[class*="banner"]',
            'div[id*="banner"]',
            'div[class*="promo"]',
            'div[id*="promo"]',
            'div[class*="sponsor"]',
            'div[id*="sponsor"]',
            'div[id*="google_ads"]',
            'div[id*="ad-container"]',
            'div[class*="ad-container"]',
            'a[href*="ad"]',
            'a[href*="advert"]',
            'script[src*="ads"]',
            'script[src*="advertising"]'
        ];

        // Hide ad elements
        adSelectors.forEach(selector => {
            const ads = document.querySelectorAll(selector);
            ads.forEach(ad => ad.style.display = 'none');
        });

        // Remove ad elements
        adSelectors.forEach(selector => {
            const ads = document.querySelectorAll(selector);
            ads.forEach(ad => ad.remove());
        });

        // Close ad pop-ups
        const closeSelectors = ['.close-button', '.ad-close', '.dismiss-ad', '.close', '[aria-label="Close"]'];
        closeSelectors.forEach(selector => {
            const closeButtons = document.querySelectorAll(selector);
            closeButtons.forEach(button => button.click());
        });
    }

    // Check for ads every 2 seconds
    setInterval(blockAds, 2000);

    // Observe DOM changes to catch dynamically loaded ads
    const observer = new MutationObserver(mutations => {
        mutations.forEach(() => blockAds());
    });

    observer.observe(document.body, { childList: true, subtree: true });

    // Initial handling
    blockades();
})();