Netflix profanity filter

By Frederik de Vree

Wat is Netflix profanity filter?

Netflix profanity filter is een Chrome-extensie ontwikkeld door frederikdevree, en de belangrijkste functie is "By Frederik de Vree".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Netflix profanity filter

Download Netflix profanity filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
Officiële URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Beschrijving By Frederik de Vree
Bestandsgrootte 71.38 KB
Aantal Installaties 5,613
Huidige Versie 2.2.2
Laatst Bijgewerkt 2015-12-31
Publicatiedatum 2015-12-31
Beoordeling 3.17/5 Totaal 71 Beoordelingen
Ontwikkelaar frederikdevree
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}