GPT Vokal

Give voice instructions to ChatGPT.

Co to jest GPT Vokal?

GPT Vokal to rozszerzenie Chrome opracowane przez Nqedile, a jego główną funkcją jest „Give voice instructions to ChatGPT.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GPT Vokal

Pobierz pliki rozszerzeń GPT Vokal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
Oficjalny URL https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
Opis Give voice instructions to ChatGPT.
Rozmiar pliku 43.5 KB
Liczba instalacji 39
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-07-17
Data Publikacji 2023-02-05
Deweloper Nqedile
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}