YouTube adBlocker

removes intrusive ads on YouTube

Was ist YouTube adBlocker?

YouTube adBlocker ist eine Chrome-Erweiterung, die von mrzlab630 entwickelt wurde, und ihr Hauptmerkmal ist "removes intrusive ads on YouTube".

Erweiterungsscreenshots

screenshot

YouTube adBlocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube adBlocker-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

                        If you are annoyed by annoying ads while watching your favorite show then this extension is for you                    

Grundlegende Informationen zur Erweiterung

Name YouTube adBlocker YouTube adBlocker
ID mgplhanhakajgbogpcelbhelooeinjid
Offizielle URL https://chromewebstore.google.com/detail/youtube-adblocker/mgplhanhakajgbogpcelbhelooeinjid
Beschreibung removes intrusive ads on YouTube
Dateigröße 267 KB
Installationsanzahl 34
Aktuelle Version 1.0.7
Letztes Update 2021-08-03
Veröffentlichungsdatum 2021-07-30
Entwickler mrzlab630
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube adBlocker",
    "version": "1.0.7",
    "author": "mrZ ",
    "description": "removes intrusive ads on YouTube ",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "32": "assets\/icons\/icon32.png",
        "64": "assets\/icons\/icon64.png",
        "128": "assets\/icons\/icon128.png",
        "256": "assets\/icons\/icon256.png",
        "512": "assets\/icons\/icon512.png"
    },
    "action": {
        "default_title": "Ad blocker for YouTube",
        "default_icon": {
            "16": "assets\/icons\/icon16.png",
            "32": "assets\/icons\/icon32.png",
            "64": "assets\/icons\/icon64.png",
            "128": "assets\/icons\/icon128.png",
            "256": "assets\/icons\/icon256.png",
            "512": "assets\/icons\/icon512.png"
        }
    },
    "content_scripts": [
        {
            "css": [
                "assets\/css\/style.css"
            ],
            "js": [
                "assets\/js\/action.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [],
            "extension_ids": []
        }
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}