Netflix profanity filter

By Frederik de Vree

Cos'è Netflix profanity filter?

Netflix profanity filter è un'estensione di Chrome sviluppata da frederikdevree, e la sua funzione principale è "By Frederik de Vree".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Netflix profanity filter

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

                        This extension filters profanity words in Netflix. It both censors the subtitles and mutes the audio on the appropriate sentence. With customizable profanity word list.

To use this, subtitles in Netflix need to be turned on. Because the filtering is based on the subtitles, make sure you add profanity words to the list in the language of the subtitles.                    

Informazioni di Base sull'Estensione

Nome Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
URL Ufficiale https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Descrizione By Frederik de Vree
Dimensione del File 71.38 KB
Conteggio Installazioni 5,613
Versione Corrente 2.2.2
Ultimo Aggiornamento 2015-12-31
Data di Pubblicazione 2015-12-31
Valutazione 3.17/5 Totale 71 Valutazioni
Sviluppatore frederikdevree
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix profanity filter",
    "version": "2.2.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "By Frederik de Vree",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}