Netflix profanity filter

By Frederik de Vree

O que é Netflix profanity filter?

Netflix profanity filter é uma extensão do Chrome desenvolvida por frederikdevree, e sua principal característica é "By Frederik de Vree".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix profanity filter

Baixe arquivos de extensão Netflix profanity filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
URL Oficial https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Descrição By Frederik de Vree
Tamanho do Arquivo 71.38 KB
Contagem de Instalações 5,613
Versão Atual 2.2.2
Última Atualização 2015-12-31
Data de Publicação 2015-12-31
Classificação 3.17/5 Total de 71 Avaliações
Desenvolvedor frederikdevree
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}