Chat GPT voice
Make GPT chat talk and talk to it with voice
Vad är Chat GPT voice?
Chat GPT voice är en Chrome-tillägg utvecklad av lp177, och dess huvudfunktion är "Make GPT chat talk and talk to it with voice".
Tilläggsskärmbilder
Ladda ner Chat GPT voice-förlängningens CRX-fil
Ladda ner Chat GPT voice-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Grundläggande Information om Tillägg
Namn | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
Officiell webbadress | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Beskrivning | Make GPT chat talk and talk to it with voice |
Filstorlek | 19.81 KB |
Antal Installationer | 133 |
Aktuell Version | 3.001.1028 |
Senast Uppdaterad | 2023-08-24 |
Publiceringsdatum | 2023-08-14 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | lp177 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/lp177/Chat-GPT-voice |
Hjälpsida URL | https://github.com/lp177/Chat-GPT-voice/issues |
Stödda Språk | 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" ] } ] } |