DoubleTedder

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

Τι είναι το DoubleTedder;

Το DoubleTedder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hrak24, και η κύρια λειτουργία του είναι "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DoubleTedder

Λήψη αρχείων επέκτασης DoubleTedder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DoubleTedder DoubleTedder
ID fegapncdamjhcaofcobgedeppgdhpled
Επίσημο URL https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled
Περιγραφή Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Μέγεθος Αρχείου 14.02 KB
Αριθμός Εγκαταστάσεων 1,256
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2017-07-24
Ημερομηνία Δημοσίευσης 2017-07-24
Αξιολόγηση 4.57/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής hrak24
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}