YouTube adBlocker

removes intrusive ads on YouTube

Co to jest YouTube adBlocker?

YouTube adBlocker to rozszerzenie Chrome opracowane przez mrzlab630, a jego główną funkcją jest „removes intrusive ads on YouTube”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube adBlocker

Pobierz pliki rozszerzeń YouTube adBlocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa YouTube adBlocker YouTube adBlocker
ID mgplhanhakajgbogpcelbhelooeinjid
Oficjalny URL https://chromewebstore.google.com/detail/youtube-adblocker/mgplhanhakajgbogpcelbhelooeinjid
Opis removes intrusive ads on YouTube
Rozmiar pliku 267 KB
Liczba instalacji 34
Aktualna Wersja 1.0.7
Ostatnia Aktualizacja 2021-08-03
Data Publikacji 2021-07-30
Deweloper mrzlab630
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}