Talking ChatGPT
Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.
Talking ChatGPT क्या है?
Talking ChatGPT Tobias Scharl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Talking ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is ideal for anyone who needs to quickly and efficiently convert spoken words into written text. With the 62 different language and dialect options, you can easily choose your preferred language and accent for transcription. Whether you're speaking in English, Spanish, French, German, or any other language, ChatGPT Speech-to-Text will accurately transcribe your words with the appropriate dialect. With the new speech to text functionality, you can now have a talking ChatGPT! The extension will now read out the responses off ChatGPT, at least if you want to. This project is also available on Github: https://github.com/0xBitBuster/talking-chatgpt-extension
एक्सटेंशन की मूल जानकारी
नाम | Talking ChatGPT |
ID | dppbeenbobngogcdfnocicajiegcofmo |
आधिकारिक URL | https://chromewebstore.google.com/detail/talking-chatgpt/dppbeenbobngogcdfnocicajiegcofmo |
विवरण | Convert your speech into text so you can have a real conversation with (a talking) ChatGPT. |
फ़ाइल का आकार | 20.67 KB |
स्थापना संख्या | 354 |
वर्तमान संस्करण | 2.3 |
अंतिम अपडेट | 2024-03-06 |
प्रकाशन तिथि | 2023-04-03 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | Tobias Scharl |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.3", "manifest_version": 3, "name": "Talking ChatGPT", "description": "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.", "permissions": [ "storage" ], "background": { "service_worker": "js\/service_worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "js\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/chatgpt-stt.js" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "action": { "default_popup": "popup\/popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |