SayAI
Adds voice recording and spoken answers to ChatGPT UI.
SayAI क्या है?
SayAI https://nodetics.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds voice recording and spoken answers to ChatGPT UI."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SayAI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
SayAI extends the ChatGPT browser interface by adding speech-to-text (ask questions using your own voice) and text-to-speech (ChatGPT speaks the answer aloud) functionality. Benefits: - Ask questions using less time - no need to type - You can listen to the answer which removes the need to look at the screen Features: - Voice recording supports several languages enabled by the OpenAI Whisper API - Text-to-speech utilizes speechSynthesis API and OS voice library - Export chat log as a file (allows printing the whole chat session as well) - Both voice recording and text-to-speech can be turned on/off in the UI - You can ask the question using your voice but let ChatGPT just write the answer instead of speaking it aloud - Free!
एक्सटेंशन की मूल जानकारी
नाम | SayAI |
ID | emchggmopcefohdhejkbekjpekbcfppf |
आधिकारिक URL | https://chromewebstore.google.com/detail/sayai/emchggmopcefohdhejkbekjpekbcfppf |
विवरण | Adds voice recording and spoken answers to ChatGPT UI. |
फ़ाइल का आकार | 45.25 KB |
स्थापना संख्या | 117 |
वर्तमान संस्करण | 1.0.11 |
अंतिम अपडेट | 2024-01-27 |
प्रकाशन तिथि | 2023-04-16 |
डेवलपर | https://nodetics.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://nodetics.com/nodetics-cws-privacy-policy.txt |
समर्थित भाषाएँ | id,de,en,en-GB,en-US,fr,nl,no,vi,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,hi,bn,th,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SayAI", "version": "1.0.11", "default_locale": "en", "author": "Nodetics", "description": "Adds voice recording and spoken answers to ChatGPT UI.", "permissions": [ "cookies" ], "background": { "service_worker": "js\/background.js" }, "host_permissions": [ "https:\/\/api.openai.com\/*", "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "js\/main.js", "js\/recorder.js", "js\/texttospeech.js", "js\/chatgptresponsegrabber.js" ], "css": [ "css\/custom.css" ], "run_at": "document_start" } ], "icons": { "96": "images\/voicechatgpt-icon-96.png" }, "web_accessible_resources": [ { "resources": [ "images\/*.svg", "js\/listener.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |