Learn English with Youtube subtitles

The application converts subtitles into sentences with highlighting grammatical structures

Co to jest Learn English with Youtube subtitles?

Learn English with Youtube subtitles to rozszerzenie Chrome opracowane przez https://eng4.me, a jego główną funkcją jest „The application converts subtitles into sentences with highlighting grammatical structures”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Learn English with Youtube subtitles

Pobierz pliki rozszerzeń Learn English with Youtube subtitles w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Learn English with Youtube subtitles Learn English with Youtube subtitles
ID kbpeagbddfkphnkphggbioocopckobmf
Oficjalny URL https://chrome.google.com/webstore/detail/learn-english-with-youtub/kbpeagbddfkphnkphggbioocopckobmf
Opis The application converts subtitles into sentences with highlighting grammatical structures
Rozmiar pliku 26.71 KB
Liczba instalacji 320
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-06-03
Data Publikacji 2020-06-03
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://eng4.me
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://eng4.me
Adres URL Strony Pomocy https://www.facebook.com/f.eng4.me
Obsługiwane Języki 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"
            ]
        }
    ]
}