Audio to Text for Whatsapp Web
Turn all received audios into text.
什么是Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web是由opsJson开发的Chrome扩展程序,该扩展的主要功能是“Turn all received audios into text.”。
扩展截图
下载Audio to Text for Whatsapp Web扩展crx文件
下载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" ] } |