Udemy translate & speech
A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
什么是Udemy translate & speech?
Udemy translate & speech是由ttyohr开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.”。
扩展截图
下载Udemy translate & speech扩展crx文件
下载Udemy translate & speech扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## Features
- Automatic translation of Udemy video subtitles to the user's preferred language
- Caption display of translated subtitles
- Playback of the translated subtitles using synthesized speech
- Customizable settings for language preferences and voice options
## Translation Languages
- German (Germany)
- French (France)
- French (Canada)
- Italian (Italy)
- Japanese (Japan)
- Korean (Korea)
- Russian (Russia)
- Spanish (Spain)
- Turkish (Turkey)
- Ukrainian (Ukraine)
- Chinese (Simplified) }
- Chinese (Traditional)
- Hindi (Hindi)
- Arabic (Arabic)
- Portuguese (Brazil)
- Portuguese (Portugal)
- Bengali (Bangladeshi)
- Filipino (Philippines)
- Indonesian (Indonesia)
- Vietnamese(Vietnam) 扩展基本信息
| 名称 | |
| ID | deajnmcnjlonmjkaibbiflnmihlmbdbc |
| 官方URL | https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc |
| 简介 | A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice. |
| 文件大小 | 442 KB |
| 安装次数 | 514 |
| 当前版本 | 1.4.0 |
| 更新时间 | 2023-11-29 |
| 上架时间 | 2023-04-30 |
| 评分 | 3.78/5 共9次评分 |
| 开发者 | ttyohr |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/tetsuyaohira/udemy-translate-speech |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Udemy translate & speech",
"description": "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.",
"version": "1.4.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "action\/popup.html",
"default_icon": {
"16": "images\/img16.png",
"32": "images\/img32.png",
"48": "images\/img48.png",
"128": "images\/img128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.udemy.com\/course\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"icons": {
"16": "images\/img16.png",
"32": "images\/img32.png",
"48": "images\/img48.png",
"128": "images\/img128.png"
}
} | |