DoubleTedder

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

Qu'est-ce que DoubleTedder ?

DoubleTedder est une extension Chrome développée par hrak24, et sa fonction principale est "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension DoubleTedder

Téléchargez les fichiers d'extension DoubleTedder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DoubleTedder DoubleTedder
ID fegapncdamjhcaofcobgedeppgdhpled
URL Officiel https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled
Description Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Taille du Fichier 14.02 KB
Nombre d'Installations 1,256
Version Actuelle 1.0.2
Dernière Mise à Jour 2017-07-24
Date de Publication 2017-07-24
Évaluation 4.57/5 Total 7 Évaluations
Développeur hrak24
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}