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によって開発されたChromeの拡張機能で、その主な機能は「Adds a speech to text microphone into the ChatGPT website.」です。

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

screenshot
screenshot

Speech to Text for ChatGPT拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        🚀 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 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
Eメール [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\/*"
            ]
        }
    ]
}