Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

Co to jest Youtube Video Blocker?

Youtube Video Blocker to rozszerzenie Chrome opracowane przez bmoses1124, a jego główną funkcją jest „Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Video Blocker

Pobierz pliki rozszerzeń Youtube Video 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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Opis Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Rozmiar pliku 6.02 KB
Liczba instalacji 555
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-12-23
Data Publikacji 2020-12-23
Ocena 1.00/5 Łącznie 3 Oceny
Deweloper bmoses1124
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",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}