Udemy translate & speech
A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
Qu'est-ce que Udemy translate & speech ?
Udemy translate & speech est une extension Chrome développée par ttyohr, et sa fonction principale est "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Udemy translate & speech
Téléchargez les fichiers d'extension Udemy translate & speech au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
## 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)
Informations de Base sur l'Extension
Nom | Udemy translate & speech |
ID | deajnmcnjlonmjkaibbiflnmihlmbdbc |
URL Officiel | https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc |
Description | A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice. |
Taille du Fichier | 442 KB |
Nombre d'Installations | 514 |
Version Actuelle | 1.4.0 |
Dernière Mise à Jour | 2023-11-29 |
Date de Publication | 2023-04-30 |
Évaluation | 3.78/5 Total 9 Évaluations |
Développeur | ttyohr |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tetsuyaohira/udemy-translate-speech |
Langues Prises en Charge | 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" } } |