GPT Vokal
Give voice instructions to ChatGPT.
¿Qué es GPT Vokal?
GPT Vokal es una extensión de Chrome desarrollada por Nqedile, y su función principal es "Give voice instructions to ChatGPT.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GPT Vokal
Descarga archivos de extensión GPT Vokal 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
This extension allows you to send voice prompts to ChatGPT instead of typing your requests. Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.
Información Básica de la Extensión
Nombre | GPT Vokal |
ID | dhjabboeafgfmofgjiegaenmiikcdcpd |
URL Oficial | https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd |
Descripción | Give voice instructions to ChatGPT. |
Tamaño del Archivo | 43.5 KB |
Cantidad de Instalaciones | 39 |
Versión Actual | 1.0.3 |
Última Actualización | 2023-07-17 |
Fecha de Publicación | 2023-02-05 |
Desarrollador | Nqedile |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT Vokal", "description": "Give voice instructions to ChatGPT.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": ".\/images\/icon16.png", "48": ".\/images\/icon48.png", "128": ".\/images\/icon128.png" }, "background": { "service_worker": ".\/background.js" }, "options_page": ".\/options.html", "action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |