DoubleTedder

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

Co to jest DoubleTedder?

DoubleTedder to rozszerzenie Chrome opracowane przez hrak24, a jego główną funkcją jest „Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia DoubleTedder

Pobierz pliki rozszerzeń DoubleTedder 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa DoubleTedder DoubleTedder
ID fegapncdamjhcaofcobgedeppgdhpled
Oficjalny URL https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled
Opis Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Rozmiar pliku 14.02 KB
Liczba instalacji 1,256
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2017-07-24
Data Publikacji 2017-07-24
Ocena 4.57/5 Łącznie 7 Oceny
Deweloper hrak24
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}