Chat GPT voice

Make GPT chat talk and talk to it with voice

O que é Chat GPT voice?

Chat GPT voice é uma extensão do Chrome desenvolvida por lp177, e sua principal característica é "Make GPT chat talk and talk to it with voice".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Chat GPT voice

Baixe arquivos de extensão Chat GPT voice 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

                        Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.                    

Informações Básicas da Extensão

Nome Chat GPT voice Chat GPT voice
ID pjfkaiaapagfpadblmlhigdepafjdkmb
URL Oficial https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb
Descrição Make GPT chat talk and talk to it with voice
Tamanho do Arquivo 19.81 KB
Contagem de Instalações 133
Versão Atual 3.001.1028
Última Atualização 2023-08-24
Data de Publicação 2023-08-14
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor lp177
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lp177/Chat-GPT-voice
URL da Página de Ajuda https://github.com/lp177/Chat-GPT-voice/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat GPT voice",
    "version": "3.001.1028",
    "description": "Make GPT chat talk and talk to it with voice",
    "options_page": "settings.html",
    "permissions": [
        "storage",
        "tabs",
        "tts"
    ],
    "action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "service_worker": "sw.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "integrations\/chat.openai.js"
            ],
            "css": [
                "integrations\/chat.openai.css"
            ]
        }
    ]
}