Adblock - best ad blocker

Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.

Cos'è Adblock - best ad blocker?

Adblock - best ad blocker è un'estensione di Chrome sviluppata da Odd Extensions, e la sua funzione principale è "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Adblock - best ad blocker

Scarica i file di estensione Adblock - best ad blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Adblock ensures a seamless browsing experience by eliminating annoying popups and intrusive ads on popular platforms like YouTube, Spotify, and Twitch. Say goodbye to interruptions during videos and music streaming. Customize your ad-blocking settings, enjoy faster page loading times, and save bandwidth. Enhance your online journey with Adblock, supporting a more pleasant browsing environment without compromising content creators' revenue—whitelist non-intrusive ads when appropriate.                    

Informazioni di Base sull'Estensione

Nome Adblock - best ad blocker Adblock - best ad blocker
ID hlneapehiglcfldmddiclojadjnfhclm
URL Ufficiale https://chromewebstore.google.com/detail/adblock-best-ad-blocker/hlneapehiglcfldmddiclojadjnfhclm
Descrizione Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.
Dimensione del File 1.5 MB
Conteggio Installazioni 48
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-12-21
Data di Pubblicazione 2023-12-21
Sviluppatore Odd Extensions
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblock - best ad blocker",
    "description": "Block ads and pop-ups on YouTube, spotify, Twitch, and your favorite websites.",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "bestadblocker16.png",
        "48": "bestadblocker48.png",
        "128": "bestadblocker128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Adblock - best ad blocker",
        "default_icon": "bestadblocker16.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "contentScriptSpotify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "Youtube.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "adRemove.js",
                "removeTwitchAds.js"
            ],
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ]
        },
        {
            "resources": [
                "contentScriptSpotify.js",
                "adsSweetalertSpotify.js",
                "adsAdsRemoveSpotify.js",
                "adswsHooksSpotify.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ]
        }
    ]
}