Voice Text
This app will transcribe your speech
Qu'est-ce que Voice Text ?
Voice Text est une extension Chrome développée par LK, et sa fonction principale est "This app will transcribe your speech".
Télécharger le fichier CRX de l'extension Voice Text
Téléchargez les fichiers d'extension Voice Text 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
Click on this chrome extension's icon once installed, and you'll be directed to a new tab. From there, click on "Speak" to start recording your speech and "Stop" to stop recording. The supported language is English.
Informations de Base sur l'Extension
Nom | |
ID | aaioppfhljbjlidhkkehocbjjccoccmm |
URL Officiel | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
Description | This app will transcribe your speech |
Taille du Fichier | 482 KB |
Nombre d'Installations | 573 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2017-08-06 |
Date de Publication | 2017-08-06 |
Évaluation | 4.20/5 Total 5 Évaluations |
Développeur | LK |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Voice Text", "version": "1.0.1", "manifest_version": 2, "description": "This app will transcribe your speech", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "client\/index.js" ] } ], "background": { "page": "popup.html" }, "permissions": [ "tabs", "activeTab" ] } |