Channel Blocker
Block irrelevant channels from the home page of youtube.
Co to jest Channel Blocker?
Channel Blocker to rozszerzenie Chrome opracowane przez xanderjakeq, a jego główną funkcją jest „Block irrelevant channels from the home page of youtube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Channel Blocker
Pobierz pliki rozszerzeń Channel 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
Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.
Podstawowe informacje o rozszerzeniu
Nazwa | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
Oficjalny URL | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
Opis | Block irrelevant channels from the home page of youtube. |
Rozmiar pliku | 10.86 KB |
Liczba instalacji | 1,636 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2022-06-21 |
Data Publikacji | 2019-09-04 |
Ocena | 1.80/5 Łącznie 5 Oceny |
Deweloper | xanderjakeq |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/thelostcreatives/youtube_channel_blocker |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Channel Blocker", "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]", "description": "Block irrelevant channels from the home page of youtube.", "version": "1.1.1", "action": { "default_popup": "popup.html", "default_icon": { "48": "\/icon.png" } }, "permissions": [ "notifications", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |