TalkGPT

Talk with chat GPT.

什么是TalkGPT?

TalkGPT是由adrianriera开发的Chrome扩展程序,该扩展的主要功能是“Talk with chat GPT.”。

扩展截图

screenshot
screenshot

下载TalkGPT扩展crx文件

下载TalkGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 TalkGPT TalkGPT
ID kcaoomfcilckbelgcbfpnfhcealidfkg
官方URL https://chromewebstore.google.com/detail/talkgpt/kcaoomfcilckbelgcbfpnfhcealidfkg
简介 Talk with chat GPT.
文件大小 76.53 KB
安装次数 1,171
当前版本 1.0.1
更新时间 2023-04-19
上架时间 2023-04-04
评分 5.00/5 共1次评分
开发者 adrianriera
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}