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