Audio to Text for Whatsapp Web
Turn all received audios into text.
Vad är Audio to Text for Whatsapp Web?
Audio to Text for Whatsapp Web är en Chrome-tillägg utvecklad av opsJson, och dess huvudfunktion är "Turn all received audios into text.".
Tilläggsskärmbilder
Ladda ner Audio to Text for Whatsapp Web-förlängningens CRX-fil
Ladda ner Audio to Text for Whatsapp Web-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
Officiell webbadress | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Beskrivning | Turn all received audios into text. |
Filstorlek | 28.91 KB |
Antal Installationer | 648 |
Aktuell Version | 1.6.3 |
Senast Uppdaterad | 2024-02-26 |
Publiceringsdatum | 2023-05-09 |
Betyg | 2.36/5 Totalt 11 Betyg |
Utvecklare | opsJson |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://opsjson.com.br/audio_to_text.html |
Stödda Språk | 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" ] } |