Udemy translate & speech
A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
Was ist Udemy translate & speech?
Udemy translate & speech ist eine Chrome-Erweiterung, die von ttyohr entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.".
Erweiterungsscreenshots
Udemy translate & speech-Erweiterungs-CRX-Datei herunterladen
Laden Sie Udemy translate & speech-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
## 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)
Grundlegende Informationen zur Erweiterung
Name | Udemy translate & speech |
ID | deajnmcnjlonmjkaibbiflnmihlmbdbc |
Offizielle URL | https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc |
Beschreibung | A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice. |
Dateigröße | 442 KB |
Installationsanzahl | 514 |
Aktuelle Version | 1.4.0 |
Letztes Update | 2023-11-29 |
Veröffentlichungsdatum | 2023-04-30 |
Bewertung | 3.78/5 Insgesamt 9 Bewertungen |
Entwickler | ttyohr |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tetsuyaohira/udemy-translate-speech |
Unterstützte Sprachen | 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" } } |