Voice Text
This app will transcribe your speech
Cos'è Voice Text?
Voice Text è un'estensione di Chrome sviluppata da LK, e la sua funzione principale è "This app will transcribe your speech".
Scarica il file CRX dell'estensione Voice Text
Scarica i file di estensione Voice Text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | aaioppfhljbjlidhkkehocbjjccoccmm |
| URL Ufficiale | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
| Descrizione | This app will transcribe your speech |
| Dimensione del File | 482 KB |
| Conteggio Installazioni | 573 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2017-08-06 |
| Data di Pubblicazione | 2017-08-06 |
| Valutazione | 4.20/5 Totale 5 Valutazioni |
| Sviluppatore | LK |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |