Keyword Blocker
Web Extension to block unwanted videos and channels
Co to jest Keyword Blocker?
Keyword Blocker to rozszerzenie Chrome opracowane przez Rik Harink, a jego główną funkcją jest „Web Extension to block unwanted videos and channels”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Keyword Blocker
Pobierz pliki rozszerzeń Keyword 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
This Chrome extension can block YouTube videos or channels from view based on keywords you can specify. It features a very basic password protection and the block message is user-customizable. Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension. The sourcecode is available on github at https://github.com/Meidor/keywordblocker
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pbgacppomjfpheddhifkdkklddnolnpg |
Oficjalny URL | https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg |
Opis | Web Extension to block unwanted videos and channels |
Rozmiar pliku | 84.9 KB |
Liczba instalacji | 9,000 |
Aktualna Wersja | 2.2.1 |
Ostatnia Aktualizacja | 2020-02-04 |
Data Publikacji | 2020-02-04 |
Ocena | 3.25/5 Łącznie 99 Oceny |
Deweloper | Rik Harink |
Typ Płatności | free |
Strona Rozszerzenia | https://www.keywordblocker.nl |
Adres URL Strony Pomocy | https://github.com/Meidor/keywordblocker/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Web Extension to block unwanted videos and channels", "version": "2.2.1", "name": "Keyword Blocker", "manifest_version": 2, "icons": { "16": "img\/icon-16.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.bundle.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon-19.png", "38": "img\/icon-38.png" }, "default_title": "Keyword Blocker", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "styles\/content_script.css" ], "js": [ "content_script.bundle.js" ] } ], "permissions": [ "tabs", "storage", "contextMenus", "*:\/\/www.youtube.com\/*" ] } |