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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
## 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"
}
} | |