DoubleTedder
Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
Что такое DoubleTedder?
DoubleTedder - это расширение Chrome, разработанное hrak24, и его основная функция - "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.".
Снимки экрана расширения
Скачать файл CRX расширения DoubleTedder
Скачайте файлы расширений DoubleTedder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Learn whole phrases from TED.
- Show subtitle of your language along with English subtitle at once.
- Auto-stop at the end of phrases so you can look into the subtitles.
- Backward 3s / 1 phrase by button or keyboard to repeat phrases you missed. Основная информация о расширении
| Название | |
| ID | fegapncdamjhcaofcobgedeppgdhpled |
| Официальный URL | https://chromewebstore.google.com/detail/doubletedder/fegapncdamjhcaofcobgedeppgdhpled |
| Описание | Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again. |
| Размер файла | 14.02 KB |
| Количество установок | 1,256 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2017-07-24 |
| Дата публикации | 2017-07-24 |
| Рейтинг | 4.57/5 Всего 7 оценок |
| Разработчик | hrak24 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DoubleTedder",
"version": "1.0.2",
"description": "Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.",
"content_scripts": [
{
"matches": [
"https:\/\/www.ted.com\/*"
],
"js": [
"doubleTedder.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.htm",
"default_icon": "icon.png"
},
"permissions": [
"tabs",
"https:\/\/www.ted.com\/*"
],
"icons": {
"128": "icon.png"
}
} | |