Youtube Comment Filter

Chrome extension that filters Youtube comments

Cos'è Youtube Comment Filter?

Youtube Comment Filter è un'estensione di Chrome sviluppata da jasonleeapps, e la sua funzione principale è "Chrome extension that filters Youtube comments".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Comment Filter

Scarica i file di estensione 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

                        A Chrome extension that lets you filter YouTube comments.

Navigate to a YouTube video and enter what words you would like to filter out!                    

Informazioni di Base sull'Estensione

Nome Youtube Comment Filter Youtube Comment Filter
ID dbdnmgjgahjbdkonhiplfoljljebfchm
URL Ufficiale https://chromewebstore.google.com/detail/youtube-comment-filter/dbdnmgjgahjbdkonhiplfoljljebfchm
Descrizione Chrome extension that filters Youtube comments
Dimensione del File 13.05 KB
Conteggio Installazioni 417
Versione Corrente 1.0
Ultimo Aggiornamento 2020-06-14
Data di Pubblicazione 2020-06-10
Valutazione 3.75/5 Totale 4 Valutazioni
Sviluppatore jasonleeapps
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Comment Filter",
    "version": "1.0",
    "description": "Chrome extension that filters Youtube comments",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/yt_icon_16.png",
        "48": "images\/yt_icon_48.png",
        "128": "images\/yt_icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}