Yet Another YouTube Comment Filter

Filters comments on YouTube.

Cos'è Yet Another YouTube Comment Filter?

Yet Another YouTube Comment Filter è un'estensione di Chrome sviluppata da Yosuke Mizutani, e la sua funzione principale è "Filters comments on YouTube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Yet Another YouTube Comment Filter

Scarica i file di estensione Yet Another YouTube Comment Filter 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

                        This extension provides a comment filter on YouTube.

- Language Filter: You can configure the languages you want to see.
- Blocked Words: You can hide the comments that include specific keywords.
- Reply Filter: You can filter replies in addition to independent comments.
- Filter On/Off Button: You can turn on/off the filter for each tab.                    

Informazioni di Base sull'Estensione

Nome Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
URL Ufficiale https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
Descrizione Filters comments on YouTube.
Dimensione del File 113 KB
Conteggio Installazioni 841
Versione Corrente 0.2.1
Ultimo Aggiornamento 2022-05-03
Data di Pubblicazione 2021-01-03
Valutazione 4.25/5 Totale 8 Valutazioni
Sviluppatore Yosuke Mizutani
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mogproject/yay-filter
Lingue Supportate en,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yet Another YouTube Comment Filter",
    "version": "0.2.1",
    "description": "Filters comments on YouTube.",
    "author": "Yosuke Mizutani",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/yay-filter.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_title": "Yay Filter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/yayFilterIcon16.png",
        "32": "icons\/yayFilterIcon32.png",
        "48": "icons\/yayFilterIcon48.png",
        "96": "icons\/yayFilterIcon96.png",
        "128": "icons\/yayFilterIcon128.png"
    },
    "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter",
    "default_locale": "en"
}