ChatGPT Microphone

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

ChatGPT Microphoneとは何ですか?

ChatGPT MicrophoneはDavid Venegasによって開発されたChromeの拡張機能で、その主な機能は「Add voice-to-text and shortcut snippets to ChatGPT.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

ChatGPT Microphone拡張機能のCRXファイルをダウンロード

ChatGPT Microphone拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}