Transflixed

Add translations to netflix subtitles

O que é Transflixed?

Transflixed é uma extensão do Chrome desenvolvida por http://transflixed.com, e sua principal característica é "Add translations to netflix subtitles".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Transflixed

Baixe arquivos de extensão Transflixed 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

                        Translate existing subtitles in Netflix to give dual language.  This may be useful in learning a language.  

Currently only German to English.  

Usage:
Install the extension
Turn it on (click the icon and click the power button to get it to turn red)
Log into netflix.com and play a video which has subtitles
Wait for the translation to complete (you should see a notification displaying progress).  Try hitting refresh if this doesn't happen...

Not officially supported by anyone.  Not well tested.  

Code on GitHub: https://github.com/hajamie/transflixed                    

Informações Básicas da Extensão

Nome Transflixed Transflixed
ID oidimfcfbfnfodkclkaoeaobgnpbeopp
URL Oficial https://chrome.google.com/webstore/detail/transflixed/oidimfcfbfnfodkclkaoeaobgnpbeopp
Descrição Add translations to netflix subtitles
Tamanho do Arquivo 124 KB
Contagem de Instalações 276
Versão Atual 0.0.0.1
Última Atualização 2018-04-10
Data de Publicação 2018-04-10
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor http://transflixed.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://transflixed.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Transflixed",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "description": "Add translations to netflix subtitles",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "transfixed.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/iconOff19.png",
            "38": "images\/iconOff38.png"
        }
    },
    "web_accessible_resources": [
        "content.js",
        "worker.js",
        "style.css"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}