Chat GPT voice
Make GPT chat talk and talk to it with voice
Qu'est-ce que Chat GPT voice ?
Chat GPT voice est une extension Chrome développée par lp177, et sa fonction principale est "Make GPT chat talk and talk to it with voice".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chat GPT voice
Téléchargez les fichiers d'extension Chat GPT voice 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
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Informations de Base sur l'Extension
Nom | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
URL Officiel | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Description | Make GPT chat talk and talk to it with voice |
Taille du Fichier | 19.81 KB |
Nombre d'Installations | 133 |
Version Actuelle | 3.001.1028 |
Dernière Mise à Jour | 2023-08-24 |
Date de Publication | 2023-08-14 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | lp177 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lp177/Chat-GPT-voice |
URL de la Page d'Aide | https://github.com/lp177/Chat-GPT-voice/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chat GPT voice", "version": "3.001.1028", "description": "Make GPT chat talk and talk to it with voice", "options_page": "settings.html", "permissions": [ "storage", "tabs", "tts" ], "action": { "default_popup": "settings.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "sw.js" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "all_frames": false, "run_at": "document_end", "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "integrations\/chat.openai.js" ], "css": [ "integrations\/chat.openai.css" ] } ] } |