YouTube Profanity Filter

(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.

Cos'è YouTube Profanity Filter?

YouTube Profanity Filter è un'estensione di Chrome sviluppata da @atechdad, e la sua funzione principale è "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Profanity Filter

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

                        The YouTube Profanity Filter was created to provide a better way to block unwanted content. This plugin uses the video's closed captions to identify bad words and blocks the video if the language is found.

Created by @atechdad originally for personal use.


YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Informazioni di Base sull'Estensione

Nome YouTube Profanity Filter YouTube Profanity Filter
ID dnglegpjmiodocfnhbbmlkabckglpmhf
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf
Descrizione (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
Dimensione del File 14.2 KB
Conteggio Installazioni 779
Versione Corrente 0.1.0.1
Ultimo Aggiornamento 2017-01-04
Data di Pubblicazione 2017-01-04
Valutazione 3.50/5 Totale 4 Valutazioni
Sviluppatore @atechdad
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube  Profanity Filter",
    "description": "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.",
    "version": "0.1.0.1",
    "homepage_url": "https:\/\/twitter.com\/atechdad",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "https:\/\/*.youtube.com\/",
        "contextMenus"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}