Voice Text
This app will transcribe your speech
Vad är Voice Text?
Voice Text är en Chrome-tillägg utvecklad av LK, och dess huvudfunktion är "This app will transcribe your speech".
Ladda ner Voice Text-förlängningens CRX-fil
Ladda ner Voice Text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | aaioppfhljbjlidhkkehocbjjccoccmm |
Officiell webbadress | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
Beskrivning | This app will transcribe your speech |
Filstorlek | 482 KB |
Antal Installationer | 573 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2017-08-06 |
Publiceringsdatum | 2017-08-06 |
Betyg | 4.20/5 Totalt 5 Betyg |
Utvecklare | LK |
Betalningssätt | free |
Stödda Språk | 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" ] } |