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 |
官方網址 | 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" ] } |