Anti Adblock Detector

Bypasses adblock detectors to allow you to continue using adblockers

Was ist Anti Adblock Detector?

Anti Adblock Detector ist eine Chrome-Erweiterung, die von adblockunblock entwickelt wurde, und ihr Hauptmerkmal ist "Bypasses adblock detectors to allow you to continue using adblockers".

Erweiterungsscreenshots

screenshot
screenshot

Anti Adblock Detector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Anti Adblock Detector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Many websites have adblock detectors that force you to either disable you adblocker or pay a subscription fee to continue using their website. This lightweight extension allows you to continue browsing these sites without having to disable your adblocker.

Note: This extension is for AdBlock/AdBlock plus, and currently has been tested and works on most major news websites. However, this is a new extension and may not work for every website with an adblock detector. If you stumble upon such as site, send an email to [email protected].                    

Grundlegende Informationen zur Erweiterung

Name Anti Adblock Detector Anti Adblock Detector
ID kjhdffcfinhkdfbbhjlfoadcdfgihmlp
Offizielle URL https://chromewebstore.google.com/detail/anti-adblock-detector/kjhdffcfinhkdfbbhjlfoadcdfgihmlp
Beschreibung Bypasses adblock detectors to allow you to continue using adblockers
Dateigröße 187 KB
Installationsanzahl 71,296
Aktuelle Version 0.2.5
Letztes Update 2020-09-08
Veröffentlichungsdatum 2020-06-06
Bewertung 2.91/5 Insgesamt 204 Bewertungen
Entwickler adblockunblock
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anti Adblock Detector",
    "version": "0.2.5",
    "description": "Bypasses adblock detectors to allow you to continue using adblockers",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Anti Adblock Detector",
        "default_icon": {
            "16": "images\/adblockdetector16.png",
            "32": "images\/adblockdetector32.png",
            "48": "images\/adblockdetector48.png",
            "128": "images\/adblockdetector128.png"
        }
    },
    "icons": {
        "16": "images\/adblockdetector16.png",
        "32": "images\/adblockdetector32.png",
        "48": "images\/adblockdetector48.png",
        "128": "images\/adblockdetector128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "manifest_version": 2
}