Ad blocker

Removes the ads

Cos'è Ad blocker?

Ad blocker è un'estensione di Chrome sviluppata da KarthiTech, e la sua funzione principale è "Removes the ads".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ad blocker

Scarica i file di estensione 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

                        This is a simple tool to remove advertisements in a web page. SWITCH ON or OFF the Ad blocker with a simple click. 

The number of advertisements blocked in a website, will be displayed over extension icon.

Ad blocker will monitor a website periodically and remove the dynamically loaded advertisements.                    

Informazioni di Base sull'Estensione

Nome Ad blocker Ad blocker
ID ajmampgbofacbjaoahgcjbjfffcbmcea
URL Ufficiale https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea
Descrizione Removes the ads
Dimensione del File 9.58 KB
Conteggio Installazioni 6,452
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-09-13
Data di Pubblicazione 2019-06-28
Valutazione 3.33/5 Totale 6 Valutazioni
Sviluppatore KarthiTech
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ad blocker",
    "description": "Removes the ads",
    "version": "1.0.2",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "incognito": "split",
    "browser_action": {
        "default_icon": "on.png",
        "default_title": "Remove the Ads"
    },
    "background": {
        "scripts": [
            "bm.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "pm.js"
            ]
        }
    ]
}