CommentBlock
Block spam/scam YouTube comments
Co to jest CommentBlock?
CommentBlock to rozszerzenie Chrome opracowane przez Xenova, a jego główną funkcją jest „Block spam/scam YouTube comments”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CommentBlock
Pobierz pliki rozszerzeń CommentBlock 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
CommentBlock is an open-source browser extension that automatically blocks spam/scam YouTube comments. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pnhkbjdbaioddkchelkolhbhcmlibjfb |
| Oficjalny URL | https://chromewebstore.google.com/detail/commentblock/pnhkbjdbaioddkchelkolhbhcmlibjfb |
| Opis | Block spam/scam YouTube comments |
| Rozmiar pliku | 400 KB |
| Liczba instalacji | 26 |
| Aktualna Wersja | 0.0.3 |
| Ostatnia Aktualizacja | 2023-02-28 |
| Data Publikacji | 2023-02-13 |
| Ocena | 3.00/5 Łącznie 2 Oceny |
| Deweloper | Xenova |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/xenova/commentblock |
| Adres URL Strony Pomocy | https://github.com/xenova/commentblock |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CommentBlock",
"description": "Block spam\/scam YouTube comments",
"version": "0.0.3",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"css": [
"styles\/style.css"
],
"js": [
"scripts\/defaults.js",
"scripts\/utils.js",
"scripts\/storage.js",
"scripts\/labels.js",
"scripts\/preprocess.js",
"scripts\/emojis.js",
"scripts\/detection.js",
"scripts\/content.js"
],
"matches": [
"https:\/\/*.youtube.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "icons\/icon.png",
"24": "icons\/icon.png",
"32": "icons\/icon.png",
"128": "icons\/icon-128x128.png"
},
"default_title": "CommentBlock",
"default_popup": "popup\/popup.html"
},
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png",
"64": "icons\/icon.png",
"128": "icons\/icon-128x128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |