Voice Text
This app will transcribe your speech
What is Voice Text?
Voice Text is a Chrome extension developed by LK, and its main feature is "This app will transcribe your speech".
Download Voice Text Extension CRX File
Download Voice Text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | aaioppfhljbjlidhkkehocbjjccoccmm |
Official URL | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
Description | This app will transcribe your speech |
File Size | 482 KB |
Installation Count | 573 |
Current Version | 1.0.1 |
Last Updated | 2017-08-06 |
Publish Date | 2017-08-06 |
Rating | 4.20/5 Total 5 Ratings |
Developer | LK |
Payment Type | free |
Supported Languages | 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" ] } |