ChatGPT Microphone

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

Was ist ChatGPT Microphone?

ChatGPT Microphone ist eine Chrome-Erweiterung, die von David Venegas entwickelt wurde, und ihr Hauptmerkmal ist "Add voice-to-text and shortcut snippets to ChatGPT.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ChatGPT Microphone-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Microphone-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Microphone ChatGPT Microphone
ID kpnejlajlhnpfphbhgfipmlogplmidin
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-microphone/kpnejlajlhnpfphbhgfipmlogplmidin
Beschreibung Add voice-to-text and shortcut snippets to ChatGPT.
Dateigröße 196 KB
Installationsanzahl 4,224
Aktuelle Version 1.5.0
Letztes Update 2024-02-21
Veröffentlichungsdatum 2023-05-05
Bewertung 4.53/5 Insgesamt 17 Bewertungen
Entwickler David Venegas
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://twitter.com/davidmvegas
Unterstützte Sprachen 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"
    }
}