ASKGPT

Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.

ASKGPTคืออะไร?

ASKGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย contact.rahul1991 และคุณลักษณะหลักของมันคือ "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses."

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

screenshot
screenshot

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

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

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

                        This cutting-edge feature utilizes advanced speech recognition and text-to-speech technologies for a seamless interactions.

Only Supported with OpenAI's GPT-3 tool

Features:
1. Lets you use your microphone to ask questions. Uses speech recognition and text-to-speech technologies
2. Reads response from chatgpt for you
3. You can configure a number voices from the configuration list. Automatically saves the configuration locally and lets you use without reconfiguring every time you use chatgpt
4. You can download code snippets easily.






ChatGpt 4: Work underprogress                    

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

ชื่อ ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
คำอธิบาย Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
ขนาดไฟล์ 78.95 KB
จำนวนการติดตั้ง 17
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2023-05-17
วันที่เผยแพร่ 2023-04-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา contact.rahul1991
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ASKGPT",
    "version": "1.0.4",
    "description": "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ASKGPT",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.png",
                "images\/icon.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}