Voice Text
This app will transcribe your speech
Wat is Voice Text?
Voice Text is een Chrome-extensie ontwikkeld door LK, en de belangrijkste functie is "This app will transcribe your speech".
Download het CRX-bestand van de extensie Voice Text
Download Voice Text-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | aaioppfhljbjlidhkkehocbjjccoccmm |
| Officiële URL | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
| Beschrijving | This app will transcribe your speech |
| Bestandsgrootte | 482 KB |
| Aantal Installaties | 573 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2017-08-06 |
| Publicatiedatum | 2017-08-06 |
| Beoordeling | 4.20/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | LK |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |