Netflix profanity filter

By Frederik de Vree

Co je Netflix profanity filter?

Netflix profanity filter je rozšíření Chrome vyvinuté frederikdevree, a jeho hlavní funkcí je „By Frederik de Vree“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Netflix profanity filter

Stáhněte si soubory rozšíření Netflix profanity filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
Oficiální URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Popis By Frederik de Vree
Velikost souboru 71.38 KB
Počet instalací 5,613
Aktuální Verze 2.2.2
Poslední Aktualizace 2015-12-31
Datum Vydání 2015-12-31
Hodnocení 3.17/5 Celkem 71 Hodnocení
Vývojář frederikdevree
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}