Downloader for Microsoft™ Text-to-Speech
Download Microsoft Text-to-Speech website demo app synthesized speech with 1 click.
Qu'est-ce que Downloader for Microsoft™ Text-to-Speech ?
Downloader for Microsoft™ Text-to-Speech est une extension Chrome développée par https://microsoft-tts-downloader.com, et sa fonction principale est "Download Microsoft Text-to-Speech website demo app synthesized speech with 1 click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Downloader for Microsoft™ Text-to-Speech
Téléchargez les fichiers d'extension Downloader for Microsoft™ Text-to-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
Microsoft™ Text to speech is a speech service that converts text to lifelike speech. The official Microsoft™ TTS website offers a demo app which you can try to synthesize lifelike speech. However, the synthesized speech can only be played but not be downloaded. This extension adds a download button next to the official 'play' button. Microsoft™ Text-to-Speech website: https://azure.microsoft.com/en-us/services/cognitive-services/text-to-speech
Informations de Base sur l'Extension
Nom | Downloader for Microsoft™ Text-to-Speech |
ID | dplnecggiofdkdcagdkjebneaonfhbbb |
URL Officiel | https://chromewebstore.google.com/detail/downloader-for-microsoft/dplnecggiofdkdcagdkjebneaonfhbbb |
Description | Download Microsoft Text-to-Speech website demo app synthesized speech with 1 click. |
Taille du Fichier | 427 KB |
Nombre d'Installations | 20,000 |
Version Actuelle | 7.0.1 |
Dernière Mise à Jour | 2024-02-14 |
Date de Publication | 2022-04-20 |
Évaluation | 3.78/5 Total 36 Évaluations |
Développeur | https://microsoft-tts-downloader.com |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://www.microsoft-tts-downloader.com |
URL de la Page de Politique de Confidentialité | https://www.microsoft-tts-downloader.com/privacy |
Langues Prises en Charge | en,vi,es,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_ext_fulltitle__", "description": "__MSG_ext_description__", "manifest_version": 3, "version": "7.0.1", "permissions": [ "storage" ], "default_locale": "en", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } }, "background": { "service_worker": "background.js" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/azure.microsoft.com\/*\/ai-services\/text-to-speech*" ], "js": [ "content.js" ], "all_frames": false, "run_at": "document_end" } ], "host_permissions": [], "externally_connectable": { "matches": [ "https:\/\/*.microsoft-tts-downloader.com\/*" ] } } |