Chat GPT voice
Make GPT chat talk and talk to it with voice
¿Qué es Chat GPT voice?
Chat GPT voice es una extensión de Chrome desarrollada por lp177, y su función principal es "Make GPT chat talk and talk to it with voice".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chat GPT voice
Descarga archivos de extensión Chat GPT voice en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Información Básica de la Extensión
Nombre | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
URL Oficial | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Descripción | Make GPT chat talk and talk to it with voice |
Tamaño del Archivo | 19.81 KB |
Cantidad de Instalaciones | 133 |
Versión Actual | 3.001.1028 |
Última Actualización | 2023-08-24 |
Fecha de Publicación | 2023-08-14 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | lp177 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/lp177/Chat-GPT-voice |
URL de la Página de Ayuda | https://github.com/lp177/Chat-GPT-voice/issues |
Idiomas Soportados | 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" ] } ] } |