Voiceboost - ChatGPT

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

Voiceboost - ChatGPT란 무엇입니까?

Voiceboost - ChatGPT은(는) Lead Connecto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Voiceboost allows for hands-free operation with its voice control feature, giving users greater convenience and accessibility."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Voiceboost - ChatGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}