Netflix profanity filter

By Frederik de Vree

Co to jest Netflix profanity filter?

Netflix profanity filter to rozszerzenie Chrome opracowane przez frederikdevree, a jego główną funkcją jest „By Frederik de Vree”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Netflix profanity filter

Pobierz pliki rozszerzeń Netflix profanity filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
Oficjalny URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Opis By Frederik de Vree
Rozmiar pliku 71.38 KB
Liczba instalacji 5,613
Aktualna Wersja 2.2.2
Ostatnia Aktualizacja 2015-12-31
Data Publikacji 2015-12-31
Ocena 3.17/5 Łącznie 71 Oceny
Deweloper frederikdevree
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}