GPT Vokal

Give voice instructions to ChatGPT.

Apa itu GPT Vokal?

GPT Vokal adalah ekstensi Chrome yang dikembangkan oleh Nqedile, dan fitur utamanya adalah "Give voice instructions to ChatGPT.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi GPT Vokal

Unduh file ekstensi GPT Vokal 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

                        This extension allows you to send voice prompts to ChatGPT instead of typing your requests. 

Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.                    

Informasi Dasar Ekstensi

Nama GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
URL Resmi https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
Deskripsi Give voice instructions to ChatGPT.
Ukuran File 43.5 KB
Jumlah Instalasi 39
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2023-07-17
Tanggal Publikasi 2023-02-05
Pengembang Nqedile
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Vokal",
    "description": "Give voice instructions to ChatGPT.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": ".\/options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}