Udemy translate & speech
A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
Udemy translate & speech là gì?
Udemy translate & speech là một tiện ích mở rộng Chrome được phát triển bởi ttyohr, và tính năng chính của nó là "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Udemy translate & speech
Tải xuống các tệp mở rộng Udemy translate & speech dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
## 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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Udemy translate & speech |
ID | deajnmcnjlonmjkaibbiflnmihlmbdbc |
URL Chính Thức | https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc |
Mô tả | A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice. |
Kích Thước Tệp | 442 KB |
Số Lần Cài Đặt | 514 |
Phiên Bản Hiện Tại | 1.4.0 |
Cập Nhật Lần Cuối | 2023-11-29 |
Ngày Phát Hành | 2023-04-30 |
Đánh Giá | 3.78/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | ttyohr |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tetsuyaohira/udemy-translate-speech |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |