Voice Text
This app will transcribe your speech
什么是Voice Text?
Voice Text是由LK开发的Chrome扩展程序,该扩展的主要功能是“This app will transcribe your speech”。
下载Voice Text扩展crx文件
下载Voice Text扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | aaioppfhljbjlidhkkehocbjjccoccmm |
官方URL | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
简介 | This app will transcribe your speech |
文件大小 | 482 KB |
安装次数 | 573 |
当前版本 | 1.0.1 |
更新时间 | 2017-08-06 |
上架时间 | 2017-08-06 |
评分 | 4.20/5 共5次评分 |
开发者 | LK |
付费类型 | free |
支持的语言 | 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" ] } |