Speech to Text for ChatGPT
Adds a speech to text microphone into the ChatGPT website.
Speech to Text for ChatGPT क्या है?
Speech to Text for ChatGPT zjdevelops द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a speech to text microphone into the ChatGPT website."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Speech to Text for ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
🚀 Keyboard Shortcuts Ctrl+S: Turn on/off speech to text Ctrl+U: Clear the text Ctrl+W: Delete the last word Cmd+ ⬇️ ⬆️ : Cycle message history. (Ctrl for Windows) 🚀 Free & Open Source Join our open-source initiative on GitHub (github.com/zubyj/speech-to-text-for-chatgpt). For issues, suggestions, or questions, please open a ticket on Github.
एक्सटेंशन की मूल जानकारी
नाम | Speech to Text for ChatGPT |
ID | kplchkeabimhnpklakhhocnhegidpcel |
आधिकारिक URL | https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel |
विवरण | Adds a speech to text microphone into the ChatGPT website. |
फ़ाइल का आकार | 35.62 KB |
स्थापना संख्या | 120 |
वर्तमान संस्करण | 0.0.4 |
अंतिम अपडेट | 2023-08-07 |
प्रकाशन तिथि | 2023-07-12 |
डेवलपर | zjdevelops |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | http://zubyj.github.io |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Speech to Text for ChatGPT", "version": "0.0.4", "description": "Adds a speech to text microphone into the ChatGPT website.", "icons": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/mic.png", "assets\/mic-active.png", "assets\/styles.css" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |