DoubleTedder
Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.
什么是DoubleTedder?
DoubleTedder是由hrak24开发的Chrome扩展程序,该扩展的主要功能是“Accelerate your English learning by TED. Show subtitles in two languages at once, auto-stop at the end and repeat again.”。
扩展截图
下载DoubleTedder扩展crx文件
下载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"
}
} | |