ChatGPT Microphone

Add voice-to-text and shortcut snippets to ChatGPT.

ChatGPT Microphone क्या है?

ChatGPT Microphone David Venegas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add voice-to-text and shortcut snippets to ChatGPT."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Microphone एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ChatGPT Microphone is open-source and features a seamlessly integrated voice-to-text microphone button and "Shortcut Snippets” which insert customizable text snippets in your conversations by just saying their keywords! Made for professionals who want to spend more time doing and less time typing.

FEATURES:
🗣️ Voice-to-Text: Click the mic (or press CMD/CTR + M) and start speaking
📝 Shortcut Snippets: Quick-insert custom phrases into your conversations
⚙️ Custom Commands: Configure "clear text" or "send message" keywords
♾️ Always On Mode: "Look mom, no hands!" Converse without interruptions
🎨 Dark/Light Mode: It perfectly matches ChatGPT's Dark and Light mode

DISCLAIMER:
This extension is specifically designed for compatibility with Google Chrome. Due to limitations with the Speech Recognition API, it does not support other Chromium-based browsers, such as Brave, Opera, or Edge.

CONTRIBUTE:
This extension is open source! We welcome contributions - you can submit a pull request or report bugs and issues via the GitHub Issues page: https://github.com/davidmvenegas/chatgpt-microphone

FEEDBACK:
We value your feedback! 💌 Send your questions or suggestions to [email protected]. Let's make ChatGPT Microphone the best it can be together!                    

एक्सटेंशन की मूल जानकारी

नाम ChatGPT Microphone ChatGPT Microphone
ID kpnejlajlhnpfphbhgfipmlogplmidin
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-microphone/kpnejlajlhnpfphbhgfipmlogplmidin
विवरण Add voice-to-text and shortcut snippets to ChatGPT.
फ़ाइल का आकार 196 KB
स्थापना संख्या 4,224
वर्तमान संस्करण 1.5.0
अंतिम अपडेट 2024-02-21
प्रकाशन तिथि 2023-05-05
रेटिंग 4.53/5 कुल 17 रेटिंग्स
डेवलपर David Venegas
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://twitter.com/davidmvegas
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Microphone",
    "version": "1.5.0",
    "description": "Add voice-to-text and shortcut snippets to ChatGPT.",
    "icons": {
        "512": "\/assets\/icon512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "\/menu\/menu.html",
        "default_icon": {
            "512": "\/assets\/icon512.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}