Talking ChatGPT

Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.

O que é Talking ChatGPT?

Talking ChatGPT é uma extensão do Chrome desenvolvida por Tobias Scharl, e sua principal característica é "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Talking ChatGPT

Baixe arquivos de extensão Talking ChatGPT 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 is ideal for anyone who needs to quickly and efficiently convert spoken words into written text.

With the 62 different language and dialect options, you can easily choose your preferred language and accent for transcription. Whether you're speaking in English, Spanish, French, German, or any other language, ChatGPT Speech-to-Text will accurately transcribe your words with the appropriate dialect.

With the new speech to text functionality, you can now have a talking ChatGPT! The extension will now read out the responses off ChatGPT, at least if you want to.


This project is also available on Github: https://github.com/0xBitBuster/talking-chatgpt-extension                    

Informações Básicas da Extensão

Nome Talking ChatGPT Talking ChatGPT
ID dppbeenbobngogcdfnocicajiegcofmo
URL Oficial https://chromewebstore.google.com/detail/talking-chatgpt/dppbeenbobngogcdfnocicajiegcofmo
Descrição Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.
Tamanho do Arquivo 20.67 KB
Contagem de Instalações 354
Versão Atual 2.3
Última Atualização 2024-03-06
Data de Publicação 2023-04-03
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Tobias Scharl
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.3",
    "manifest_version": 3,
    "name": "Talking ChatGPT",
    "description": "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/chatgpt-stt.js"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}