Ad Blocker Notice Removal

Remove the ad blocker notice on popular sites

Was ist Ad Blocker Notice Removal?

Ad Blocker Notice Removal ist eine Chrome-Erweiterung, die von https://www.xeweb.net entwickelt wurde, und ihr Hauptmerkmal ist "Remove the ad blocker notice on popular sites".

Erweiterungsscreenshots

screenshot
screenshot

Ad Blocker Notice Removal-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ad Blocker Notice Removal-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

                        Some websites force it's users to disable their ad blocker in order to view the page. This can expose users to targeted ads which are a serious threat to your privacy.

This extension simply removes the ad blocker notice on over 500 websites so that you may browse freely. It's free and open source!

If you see a notice that is not removed by this extension feel free to report it by right-clicking the extension icon and choosing "Report issue with website".

Please consider sponsoring this project at https://github.com/sponsors/fire015                    

Grundlegende Informationen zur Erweiterung

Name Ad Blocker Notice Removal Ad Blocker Notice Removal
ID bnohpbaeckhhfnfijdnapgmbldkigchl
Offizielle URL https://chromewebstore.google.com/detail/ad-blocker-notice-removal/bnohpbaeckhhfnfijdnapgmbldkigchl
Beschreibung Remove the ad blocker notice on popular sites
Dateigröße 33.04 KB
Installationsanzahl 2,866
Aktuelle Version 2.0.6
Letztes Update 2024-03-01
Veröffentlichungsdatum 2020-08-18
Bewertung 3.55/5 Insgesamt 11 Bewertungen
Entwickler https://www.xeweb.net
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/fire015/adblocker-notice-removal
Hilfeseite URL https://github.com/fire015/adblocker-notice-removal/issues/new
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ad Blocker Notice Removal",
    "version": "2.0.6",
    "author": "Jason M",
    "description": "Remove the ad blocker notice on popular sites",
    "manifest_version": 3,
    "icons": {
        "16": "\/icons\/16.png",
        "32": "\/icons\/32.png",
        "48": "\/icons\/48.png",
        "128": "\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "arrive.min.js",
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_title": "Ad Blocker Notice Removal",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "alarms",
        "tabs"
    ]
}