Chat GPT voice
Make GPT chat talk and talk to it with voice
Chat GPT voice क्या है?
Chat GPT voice lp177 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make GPT chat talk and talk to it with voice"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chat GPT voice एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.
एक्सटेंशन की मूल जानकारी
नाम | Chat GPT voice |
ID | pjfkaiaapagfpadblmlhigdepafjdkmb |
आधिकारिक URL | https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb |
विवरण | Make GPT chat talk and talk to it with voice |
फ़ाइल का आकार | 19.81 KB |
स्थापना संख्या | 133 |
वर्तमान संस्करण | 3.001.1028 |
अंतिम अपडेट | 2023-08-24 |
प्रकाशन तिथि | 2023-08-14 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | lp177 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lp177/Chat-GPT-voice |
सहायता पृष्ठ URL | https://github.com/lp177/Chat-GPT-voice/issues |
समर्थित भाषाएँ | 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" ] } ] } |