English Learner Kit

This extension helps learn phonetic transcription and pronunciation.

Cos'è English Learner Kit?

English Learner Kit è un'estensione di Chrome sviluppata da Andrey Cheptsov, e la sua funzione principale è "This extension helps learn phonetic transcription and pronunciation.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione English Learner Kit

Scarica i file di estensione English Learner Kit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        To see transcription for a word on the page, move your mouse over it and hold the Ctrl (Cmd for OS X) key. Hold the mouse longer to listen the pronunciation.

Click on a word holding the Ctrl (Cmd for OS X) key to add it to the favorites (or to remove it from the favorites).

Please submit bug reports and pull requests to https://github.com/cheptsov/english-learner-kit/issues                    

Informazioni di Base sull'Estensione

Nome English Learner Kit English Learner Kit
ID afmaganbgpebidpiahknfcgbhegckaao
URL Ufficiale https://chrome.google.com/webstore/detail/english-learner-kit/afmaganbgpebidpiahknfcgbhegckaao
Descrizione This extension helps learn phonetic transcription and pronunciation.
Dimensione del File 38.75 KB
Conteggio Installazioni 121
Versione Corrente 1.0.11
Ultimo Aggiornamento 2014-07-04
Data di Pubblicazione 2014-07-04
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Andrey Cheptsov
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "English Learner Kit",
    "description": "This extension helps learn phonetic transcription and pronunciation.",
    "version": "1.0.11",
    "permissions": [
        "https:\/\/dictionary.yandex.net\/",
        "storage",
        "notifications",
        "background"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "graduation-cap_999999_19.png",
            "38": "graduation-cap_999999_38.png"
        }
    }
}