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是由https://eng4.me開發的Chrome擴展程式,該擴展的主要功能是“The application converts subtitles into sentences with highlighting grammatical structures”。
擴展截圖
下載Learn English with Youtube subtitles擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | kbpeagbddfkphnkphggbioocopckobmf |
| 官方網址 | 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"
]
}
]
} | |