Chat GPT voice

Make GPT chat talk and talk to it with voice

Chat GPT voiceคืออะไร?

Chat GPT voice เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lp177 และคุณลักษณะหลักของมันคือ "Make GPT chat talk and talk to it with voice"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Chat GPT voice ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chat GPT voice Chat GPT voice
ID pjfkaiaapagfpadblmlhigdepafjdkmb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb
คำอธิบาย Make GPT chat talk and talk to it with voice
ขนาดไฟล์ 19.81 KB
จำนวนการติดตั้ง 133
เวอร์ชันปัจจุบัน 3.001.1028
อัปเดตครั้งล่าสุด 2023-08-24
วันที่เผยแพร่ 2023-08-14
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา lp177
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/lp177/Chat-GPT-voice
URL หน้าช่วยเหลือ https://github.com/lp177/Chat-GPT-voice/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat GPT voice",
    "version": "3.001.1028",
    "description": "Make GPT chat talk and talk to it with voice",
    "options_page": "settings.html",
    "permissions": [
        "storage",
        "tabs",
        "tts"
    ],
    "action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "service_worker": "sw.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "integrations\/chat.openai.js"
            ],
            "css": [
                "integrations\/chat.openai.css"
            ]
        }
    ]
}