YouTube Blocker

Block unwanted YouTube channels.

Co to jest YouTube Blocker?

YouTube Blocker to rozszerzenie Chrome opracowane przez Przemysław Tyczyński, a jego główną funkcją jest „Block unwanted YouTube channels.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Blocker

Pobierz pliki rozszerzeń YouTube Blocker 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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
Opis Block unwanted YouTube channels.
Rozmiar pliku 96.3 KB
Liczba instalacji 1,036
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-04-21
Data Publikacji 2020-04-21
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Przemysław Tyczyński
Typ Płatności free
Strona Rozszerzenia https://youtube-blocker.tyczynski.dev
Adres URL Strony Pomocy https://youtube-blocker.tyczynski.dev
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}