Video AdBlock for YouTube™ Extension

Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Also works with YouTube™ Music.

Was ist Video AdBlock for YouTube™ Extension?

Video AdBlock for YouTube™ Extension ist eine Chrome-Erweiterung, die von The Creative Joys entwickelt wurde, und ihr Hauptmerkmal ist "Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Also works with YouTube™ Music.".

Erweiterungsscreenshots

screenshot
screenshot

Video AdBlock for YouTube™ Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Video AdBlock for YouTube™ Extension-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

                        * Removes YouTube™ video and text ads. 
* Works on all websites that contain a YouTube™ video.
* Also works with YouTube™ Music.

Enjoy ad free videos!                    

Grundlegende Informationen zur Erweiterung

Name Video AdBlock for YouTube™ Extension Video AdBlock for YouTube™ Extension
ID lmkjedkhnnhcohninidcejgollmggcjf
Offizielle URL https://chromewebstore.google.com/detail/video-adblock-for-youtube/lmkjedkhnnhcohninidcejgollmggcjf
Beschreibung Removes all YouTube™ video and text ads. Lightweight and safe, with minimal required permissions. Also works with YouTube™ Music.
Dateigröße 24.76 KB
Installationsanzahl 11,474
Aktuelle Version 5.1
Letztes Update 2023-12-13
Veröffentlichungsdatum 2020-06-26
Bewertung 4.17/5 Insgesamt 81 Bewertungen
Entwickler The Creative Joys
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/videoadblockforyt/home
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video AdBlock for YouTube\u2122 Extension",
    "version": "5.1",
    "description": "Removes all YouTube\u2122 video and text ads. Lightweight and safe, with minimal required permissions. Also works with YouTube\u2122 Music.",
    "manifest_version": 3,
    "icons": {
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "adBlockerBg.js"
    },
    "action": {
        "default_title": "Video AdBlock for YouTube\u2122",
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "adBlockerYt.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ]
}