Chat GPT voice
Make GPT chat talk and talk to it with voice
What is Chat GPT voice?
Chat GPT voice is a Chrome extension developed by lp177, and its main feature is "Make GPT chat talk and talk to it with voice".
Extension Screenshots
Download Chat GPT voice Extension CRX File
Download Chat GPT voice extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
Extension Basic Information
Name | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
Official URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
Description | Make GPT chat talk and talk to it with voice |
File Size | 19.81 KB |
Installation Count | 133 |
Current Version | 3.001.1028 |
Last Updated | 2023-08-24 |
Publish Date | 2023-08-14 |
Rating | 5.00/5 Total 3 Ratings |
Developer | lp177 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lp177/Chat-GPT-voice |
Help Page URL | https://github.com/lp177/Chat-GPT-voice/issues |
Supported Languages | 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" ] } ] } |