TalkGPT

Talk with chat GPT.

TalkGPTคืออะไร?

TalkGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย adrianriera และคุณลักษณะหลักของมันคือ "Talk with chat GPT."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TalkGPT

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}