Voiceboost - ChatGPT

Voiceboost allows for hands-free operation with its voice control feature, giving users greater convenience and accessibility.

Voiceboost - ChatGPTคืออะไร?

Voiceboost - ChatGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lead Connecto และคุณลักษณะหลักของมันคือ "Voiceboost allows for hands-free operation with its voice control feature, giving users greater convenience and accessibility."

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

screenshot
screenshot

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

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

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

                        The Voiceboost extension is now equipped with voice control functionality. This feature allows users to engage in vocal dialogues with ChatGPT, an OpenAI-powered chatbot, while using Chrome. 
The extension adds a new button underneath the input area. Once clicked, the tool captures the user's spoken question and sends it to ChatGPT for a response.

This new feature enhances the user experience by providing an alternative input method that may be more convenient for some users. With the voice control extension, users can now interact with ChatGPT hands-free and without the need to type.

Features:
Record voice input and submit it to ChatGPT

Keyboard Shortcuts
To capture the voice, use the key combination
Windows - Ctrl+Shift+S
Mac - Command+Shift+S

To Stop and Submit, use the key combination
Windows - Ctrl+Shift+E
Mac - Command+Shift+E


Please allow microphone permission when prompted.                    

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

ชื่อ Voiceboost - ChatGPT Voiceboost - ChatGPT
ID ndcbfbgifnmkpocehlakddkhhijciokj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/voiceboost-chatgpt/ndcbfbgifnmkpocehlakddkhhijciokj
คำอธิบาย Voiceboost allows for hands-free operation with its voice control feature, giving users greater convenience and accessibility.
ขนาดไฟล์ 888 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2023-07-01
วันที่เผยแพร่ 2023-03-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Lead Connecto
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voiceboost - ChatGPT",
    "version": "1.7",
    "description": "Voiceboost allows for hands-free operation with its voice control feature, giving users greater convenience and accessibility.",
    "icons": {
        "128": "img\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "\/libs\/jquery-3.6.0.min.js",
                "\/js\/content.js"
            ],
            "css": [
                "\/css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "action": {
        "default_icon": "img\/icon.png",
        "default_title": "Voiceboost - ChatGPT",
        "default_popup": "popup.html"
    },
    "commands": {
        "StartRecognition": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            },
            "description": "Start speech recognition"
        },
        "StopRecognition": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            },
            "description": "Stop speech recognition"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "manifest_version": 3
}