Chat GPT voice
Make GPT chat talk and talk to it with voice
Wat is Chat GPT voice?
Chat GPT voice is een Chrome-extensie ontwikkeld door lp177, en de belangrijkste functie is "Make GPT chat talk and talk to it with voice".
Extensie Screenshots
Download het CRX-bestand van de extensie Chat GPT voice
Download Chat GPT voice-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Basisinformatie over de Extensie
Naam | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
Officiële URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Beschrijving | Make GPT chat talk and talk to it with voice |
Bestandsgrootte | 19.81 KB |
Aantal Installaties | 133 |
Huidige Versie | 3.001.1028 |
Laatst Bijgewerkt | 2023-08-24 |
Publicatiedatum | 2023-08-14 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | lp177 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/lp177/Chat-GPT-voice |
Help Pagina-URL | https://github.com/lp177/Chat-GPT-voice/issues |
Ondersteunde Talen | 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" ] } ] } |