Udemy translate & speech
A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.
O que é Udemy translate & speech?
Udemy translate & speech é uma extensão do Chrome desenvolvida por ttyohr, e sua principal característica é "A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Udemy translate & speech
Baixe arquivos de extensão Udemy translate & speech no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
## 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)
Informações Básicas da Extensão
Nome | Udemy translate & speech |
ID | deajnmcnjlonmjkaibbiflnmihlmbdbc |
URL Oficial | https://chromewebstore.google.com/detail/udemy-translate-speech/deajnmcnjlonmjkaibbiflnmihlmbdbc |
Descrição | A Chrome extension that translates subtitles of Udemy content and reads them out with a synthetic voice. |
Tamanho do Arquivo | 442 KB |
Contagem de Instalações | 514 |
Versão Atual | 1.4.0 |
Última Atualização | 2023-11-29 |
Data de Publicação | 2023-04-30 |
Classificação | 3.78/5 Total de 9 Avaliações |
Desenvolvedor | ttyohr |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tetsuyaohira/udemy-translate-speech |
Idiomas Suportados | 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" } } |