Youtube Comment Filter
Chrome extension that filters Youtube comments
Co to jest Youtube Comment Filter?
Youtube Comment Filter to rozszerzenie Chrome opracowane przez jasonleeapps, a jego główną funkcją jest „Chrome extension that filters Youtube comments”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Comment Filter
Pobierz pliki rozszerzeń Youtube Comment Filter 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
A Chrome extension that lets you filter YouTube comments. Navigate to a YouTube video and enter what words you would like to filter out!
Podstawowe informacje o rozszerzeniu
Nazwa | Youtube Comment Filter |
ID | dbdnmgjgahjbdkonhiplfoljljebfchm |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-comment-filter/dbdnmgjgahjbdkonhiplfoljljebfchm |
Opis | Chrome extension that filters Youtube comments |
Rozmiar pliku | 13.05 KB |
Liczba instalacji | 417 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-06-14 |
Data Publikacji | 2020-06-10 |
Ocena | 3.75/5 Łącznie 4 Oceny |
Deweloper | jasonleeapps |
[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 Comment Filter", "version": "1.0", "description": "Chrome extension that filters Youtube comments", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/yt_icon_16.png", "48": "images\/yt_icon_48.png", "128": "images\/yt_icon_128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch?v=*" ], "run_at": "document_end" } ], "page_action": { "default_popup": "popup.html" }, "manifest_version": 2 } |