Voice Text
This app will transcribe your speech
Apa itu Voice Text?
Voice Text adalah ekstensi Chrome yang dikembangkan oleh LK, dan fitur utamanya adalah "This app will transcribe your speech".
Unduh Berkas CRX Ekstensi Voice Text
Unduh file ekstensi Voice Text dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | aaioppfhljbjlidhkkehocbjjccoccmm |
URL Resmi | https://chrome.google.com/webstore/detail/voice-text/aaioppfhljbjlidhkkehocbjjccoccmm |
Deskripsi | This app will transcribe your speech |
Ukuran File | 482 KB |
Jumlah Instalasi | 573 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2017-08-06 |
Tanggal Publikasi | 2017-08-06 |
Penilaian | 4.20/5 Total 5 Penilaian |
Pengembang | LK |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |