Audio to Text for Whatsapp Web
Turn all received audios into text.
Qu'est-ce que Audio to Text for Whatsapp Web ?
Audio to Text for Whatsapp Web est une extension Chrome développée par opsJson, et sa fonction principale est "Turn all received audios into text.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Audio to Text for Whatsapp Web
Téléchargez les fichiers d'extension Audio to Text for Whatsapp Web au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Audio to Text for Whatsapp Web |
ID | knjcfhlcbbkgjfocddahfmhjongelpgk |
URL Officiel | https://chromewebstore.google.com/detail/audio-to-text-for-whatsap/knjcfhlcbbkgjfocddahfmhjongelpgk |
Description | Turn all received audios into text. |
Taille du Fichier | 28.91 KB |
Nombre d'Installations | 648 |
Version Actuelle | 1.6.3 |
Dernière Mise à Jour | 2024-02-26 |
Date de Publication | 2023-05-09 |
Évaluation | 2.36/5 Total 11 Évaluations |
Développeur | opsJson |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://opsjson.com.br/audio_to_text.html |
Langues Prises en Charge | 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" ] } |