DoubleTedder

Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.

O que é DoubleTedder?

DoubleTedder é uma extensão do Chrome desenvolvida por hrak24, e sua principal característica é "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DoubleTedder

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

                        Learn whole phrases from TED.
- Show subtitle of your language along with English subtitle at once.
- Auto-stop at the end of phrases so you can look into the subtitles.
- Backward 3s / 1 phrase by button or keyboard to repeat phrases you missed.                    

Informações Básicas da Extensão

Nome DoubleTedder DoubleTedder
ID fegapncdamjhcaofcobgedeppgdhpled
URL Oficial https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled
Descrição Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Tamanho do Arquivo 14.02 KB
Contagem de Instalações 1,256
Versão Atual 1.0.2
Última Atualização 2017-07-24
Data de Publicação 2017-07-24
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor hrak24
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DoubleTedder",
    "version": "1.0.2",
    "description": "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.ted.com\/*"
            ],
            "js": [
                "doubleTedder.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.htm",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.ted.com\/*"
    ],
    "icons": {
        "128": "icon.png"
    }
}