Chat GPT voice
Make GPT chat talk and talk to it with voice
Cos'è Chat GPT voice?
Chat GPT voice è un'estensione di Chrome sviluppata da lp177, e la sua funzione principale è "Make GPT chat talk and talk to it with voice".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chat GPT voice
Scarica i file di estensione Chat GPT voice in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Informazioni di Base sull'Estensione
Nome | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
URL Ufficiale | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Descrizione | Make GPT chat talk and talk to it with voice |
Dimensione del File | 19.81 KB |
Conteggio Installazioni | 133 |
Versione Corrente | 3.001.1028 |
Ultimo Aggiornamento | 2023-08-24 |
Data di Pubblicazione | 2023-08-14 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | lp177 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lp177/Chat-GPT-voice |
URL della Pagina di Aiuto | https://github.com/lp177/Chat-GPT-voice/issues |
Lingue Supportate | 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" ] } ] } |