GPT Vokal

Give voice instructions to ChatGPT.

O que é GPT Vokal?

GPT Vokal é uma extensão do Chrome desenvolvida por Nqedile, e sua principal característica é "Give voice instructions to ChatGPT.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GPT Vokal

Baixe arquivos de extensão GPT Vokal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
URL Oficial https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
Descrição Give voice instructions to ChatGPT.
Tamanho do Arquivo 43.5 KB
Contagem de Instalações 39
Versão Atual 1.0.3
Última Atualização 2023-07-17
Data de Publicação 2023-02-05
Desenvolvedor Nqedile
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}