Yet Another YouTube Comment Filter

Filters comments on YouTube.

Qu'est-ce que Yet Another YouTube Comment Filter ?

Yet Another YouTube Comment Filter est une extension Chrome développée par Yosuke Mizutani, et sa fonction principale est "Filters comments on YouTube.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Yet Another YouTube Comment Filter

Téléchargez les fichiers d'extension Yet Another YouTube Comment Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
URL Officiel https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
Description Filters comments on YouTube.
Taille du Fichier 113 KB
Nombre d'Installations 841
Version Actuelle 0.2.1
Dernière Mise à Jour 2022-05-03
Date de Publication 2021-01-03
Évaluation 4.25/5 Total 8 Évaluations
Développeur Yosuke Mizutani
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mogproject/yay-filter
Langues Prises en Charge 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"
}