Chat Filter for YouTube Live
Chrome Extension for Filtering Chat Messages on YouTube Live.
Cos'è Chat Filter for YouTube Live?
Chat Filter for YouTube Live è un'estensione di Chrome sviluppata da https://fiahfy.blogspot.com, e la sua funzione principale è "Chrome Extension for Filtering Chat Messages on YouTube Live.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chat Filter for YouTube Live
Scarica i file di estensione Chat Filter for YouTube Live in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- Filter chat messages by text or regular expression.
- Mask only messages or hide completely. Informazioni di Base sull'Estensione
| Nome | |
| ID | jalcplhakmckbmlbidmbmpaegcpbejog |
| URL Ufficiale | https://chromewebstore.google.com/detail/chat-filter-for-youtube-l/jalcplhakmckbmlbidmbmpaegcpbejog |
| Descrizione | Chrome Extension for Filtering Chat Messages on YouTube Live. |
| Dimensione del File | 192 KB |
| Conteggio Installazioni | 3,413 |
| Versione Corrente | 0.0.12 |
| Ultimo Aggiornamento | 2023-05-04 |
| Data di Pubblicazione | 2020-05-25 |
| Valutazione | 4.48/5 Totale 21 Valutazioni |
| Sviluppatore | https://fiahfy.blogspot.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/live_chat*"
],
"all_frames": true,
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Chat Filter for YouTube Live",
"description": "Chrome Extension for Filtering Chat Messages on YouTube Live.",
"version": "0.0.12"
} | |