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
官方網址 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"
    }
}