Voice Text
This app will transcribe your speech
Что такое Voice Text?
Voice Text - это расширение Chrome, разработанное LK, и его основная функция - "This app will transcribe your speech".
Скачать файл CRX расширения Voice Text
Скачайте файлы расширений 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" ] } |