Chat GPT voice
Make GPT chat talk and talk to it with voice
Hvad er Chat GPT voice?
Chat GPT voice er en Chrome-udvidelse udviklet af lp177, og dens hovedfunktion er "Make GPT chat talk and talk to it with voice".
Udvidelsesskærmbilleder
Download Chat GPT voice-udvidelses-CRX-fil
Download Chat GPT voice-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Grundlæggende oplysninger om udvidelsen
Navn | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
Officiel URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Beskrivelse | Make GPT chat talk and talk to it with voice |
Filstørrelse | 19.81 KB |
Antal Installationer | 133 |
Nuværende Version | 3.001.1028 |
Senest Opdateret | 2023-08-24 |
Udgivelsesdato | 2023-08-14 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | lp177 |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lp177/Chat-GPT-voice |
Hjælpeside-URL | https://github.com/lp177/Chat-GPT-voice/issues |
Understøttede Sprog | 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" ] } ] } |