Audio to Text for Whatsapp Web
Turn all received audios into text.
Что такое Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web - это расширение Chrome, разработанное opsJson, и его основная функция - "Turn all received audios into text.".
Снимки экрана расширения
Скачать файл CRX расширения Audio to Text for Whatsapp Web
Скачайте файлы расширений Audio to Text for Whatsapp Web в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Generate transcripts of all audio messages automatically! No more losing patience looking for information in audio messages. This extension detects new incoming or outgoing audio messages on your Whatsapp Web, downloads the content, sends it to OpenAI's Whisper API, and receives a transcript, which is then placed under the corresponding audio message.
Основная информация о расширении
Название | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
Официальный URL | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Описание | Turn all received audios into text. |
Размер файла | 28.91 KB |
Количество установок | 648 |
Текущая Версия | 1.6.3 |
Последнее Обновление | 2024-02-26 |
Дата публикации | 2023-05-09 |
Рейтинг | 2.36/5 Всего 11 оценок |
Разработчик | opsJson |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://opsjson.com.br/audio_to_text.html |
Поддерживаемые языки | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Audio to Text for Whatsapp Web", "version": "1.6.3", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "128": ".\/icons\/128.png", "16": ".\/icons\/16.png", "38": ".\/icons\/38.png", "64": ".\/icons\/64.png" }, "action": { "default_popup": "popup.html", "default_title": "Audio to Text for Whatsapp Web" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "injector.js" ], "matches": [ "https:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "resources": [ "script.js" ] } ], "permissions": [ "storage", "tabs" ] } |