Yet Another YouTube Comment Filter

Filters comments on YouTube.

Τι είναι το Yet Another YouTube Comment Filter;

Το Yet Another YouTube Comment Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yosuke Mizutani, και η κύρια λειτουργία του είναι "Filters comments on YouTube.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Yet Another YouTube Comment Filter

Λήψη αρχείων επέκτασης Yet Another YouTube Comment Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
Επίσημο URL https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
Περιγραφή Filters comments on YouTube.
Μέγεθος Αρχείου 113 KB
Αριθμός Εγκαταστάσεων 841
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2022-05-03
Ημερομηνία Δημοσίευσης 2021-01-03
Αξιολόγηση 4.25/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Yosuke Mizutani
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mogproject/yay-filter
Υποστηριζόμενες Γλώσσες 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"
}