English Learner Kit

This extension helps learn phonetic transcription and pronunciation.

Что такое English Learner Kit?

English Learner Kit - это расширение Chrome, разработанное Andrey Cheptsov, и его основная функция - "This extension helps learn phonetic transcription and pronunciation.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения English Learner Kit

Скачайте файлы расширений English Learner Kit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название English Learner Kit English Learner Kit
ID afmaganbgpebidpiahknfcgbhegckaao
Официальный URL https://chrome.google.com/webstore/detail/english-learner-kit/afmaganbgpebidpiahknfcgbhegckaao
Описание This extension helps learn phonetic transcription and pronunciation.
Размер файла 38.75 KB
Количество установок 121
Текущая Версия 1.0.11
Последнее Обновление 2014-07-04
Дата публикации 2014-07-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Andrey Cheptsov
Тип оплаты free
Поддерживаемые языки 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"
        }
    }
}