TalkGPT

Talk with chat GPT.

What is TalkGPT?

TalkGPT is a Chrome extension developed by adrianriera, and its main feature is "Talk with chat GPT.".

Extension Screenshots

screenshot
screenshot

Download TalkGPT Extension CRX File

Download TalkGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Convert your voice to text and automatically send it to chat GPT. When he has answered you, you will hear the text of his answer in the language in which you have configured your browser.                    

Extension Basic Information

Name TalkGPT TalkGPT
ID kcaoomfcilckbelgcbfpnfhcealidfkg
Official URL https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg
Description Talk with chat GPT.
File Size 76.53 KB
Installation Count 1,171
Current Version 1.0.1
Last Updated 2023-04-19
Publish Date 2023-04-04
Rating 5.00/5 Total 1 Ratings
Developer adrianriera
Email [email protected]
Payment Type free
Supported Languages en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TalkGPT",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "action": {
        "default_icon": "assets\/icon-r.png",
        "default_popup": "index.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "128": "assets\/icon.png"
    }
}