Speech to Text for ChatGPT

Adds a speech to text microphone into the ChatGPT website.

Apa itu Speech to Text for ChatGPT?

Speech to Text for ChatGPT adalah ekstensi Chrome yang dikembangkan oleh zjdevelops, dan fitur utamanya adalah "Adds a speech to text microphone into the ChatGPT website.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Speech to Text for ChatGPT

Unduh file ekstensi Speech to Text for ChatGPT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        🚀 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.                    

Informasi Dasar Ekstensi

Nama Speech to Text for ChatGPT Speech to Text for ChatGPT
ID kplchkeabimhnpklakhhocnhegidpcel
URL Resmi https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel
Deskripsi Adds a speech to text microphone into the ChatGPT website.
Ukuran File 35.62 KB
Jumlah Instalasi 120
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2023-08-07
Tanggal Publikasi 2023-07-12
Pengembang zjdevelops
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi http://zubyj.github.io
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}