Learn English with Youtube subtitles

The application converts subtitles into sentences with highlighting grammatical structures

Что такое Learn English with Youtube subtitles?

Learn English with Youtube subtitles - это расширение Chrome, разработанное https://eng4.me, и его основная функция - "The application converts subtitles into sentences with highlighting grammatical structures".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Learn English with Youtube subtitles

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

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

                        We convert English subtitles from youtube videos into sentences, show the whole grammar, phrasal verbs, stable phrases in the sentence. Your vocabulary of English words + interval word training to learn them.                    

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

Название Learn English with Youtube subtitles Learn English with Youtube subtitles
ID kbpeagbddfkphnkphggbioocopckobmf
Официальный URL https://chrome.google.com/webstore/detail/learn-english-with-youtub/kbpeagbddfkphnkphggbioocopckobmf
Описание The application converts subtitles into sentences with highlighting grammatical structures
Размер файла 26.71 KB
Количество установок 320
Текущая Версия 1.0.1
Последнее Обновление 2020-06-03
Дата публикации 2020-06-03
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://eng4.me
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://eng4.me
URL страницы помощи https://www.facebook.com/f.eng4.me
Поддерживаемые языки en,fr,es,it,pt-BR,pt-PT,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.1",
    "description": "__MSG_appDesc__",
    "manifest_version": 2,
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}