VoiceGPT

Voice chat for ChatGPT

VoiceGPT란 무엇입니까?

VoiceGPT은(는) Mizan Rifat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Voice chat for ChatGPT"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

VoiceGPT 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        VoiceGPT: Your Voice-Driven Chrome Extension for Seamless Conversations with ChatGPT

VoiceGPT is an innovative Chrome browser extension designed to enhance your chat experience by integrating voice commands with ChatGPT. Unlike traditional voice-enabled extensions, VoiceGPT prioritizes functionality and accessibility, offering a comprehensive solution for users seeking a natural and fluid interaction.

Key Features:
🔄 Unified Input Field: Effortlessly switch between typing and talking within the same input field, catering to your preference – whether it's the keyboard or your voice.

🖱️ Cursor Freedom: Take full control of your cursor position within the input field, providing unparalleled flexibility to seamlessly blend typing and voice commands.

🌐 Multilingual Support: Speak and listen in your preferred language with ease, thanks to JavaScript SpeechSynthesisUtterance and SpeechRecognition Web Speech APIs.

Voice Commands:
🗑️ clear all: Clears the entire input field, providing a clean slate for your next interaction.

✏️ clear: Removes the last spoken transcript, allowing you to edit or start anew.

🚫 stop listening: Halts the listening function, giving you control over when the extension processes voice commands.

📤 submit: Submits the current text in the input field, triggering a response from ChatGPT.

Keyboard Shortcuts:
🎙️ Ctrl + Space (Ctrl + B in Mac): Initiates or stops the listening function, giving you seamless control over when VoiceGPT actively awaits your voice input.

🎤 Ctrl + S: Holding down Ctrl + S triggers the Hold and Talk mode, enabling continuous voice input until the combination is released.

Note:
Please grant microphone permissions when prompted by your browser for seamless voice interactions.

Special Note:
For the speaking and listening functionalities tailored for ChatGPT, VoiceGPT leverages the capabilities of JavaScript SpeechSynthesisUtterance and SpeechRecognition Web Speech API. It's crucial to note that the developer has not independently developed these functionalities but harnessed the power of existing APIs provided by the web platform.

Please be aware that any issues, inaccuracies, or limitations related to speech synthesis, voice recognition, or language support are inherent to the underlying APIs. If certain languages pose challenges, it reflects the capabilities of the APIs, and the developer is not responsible for any shortcomings in this regard.

The extension aims to provide a seamless and user-friendly experience within the constraints of the utilized APIs. If you encounter any issues, please consider communicating with the developer.                    

확장 프로그램 기본 정보

이름 VoiceGPT VoiceGPT
ID ollebencmhliplgocnonkikkkhgchmgo
공식 URL https://chromewebstore.google.com/detail/voicegpt/ollebencmhliplgocnonkikkkhgchmgo
설명 Voice chat for ChatGPT
파일 크기 99.7 KB
설치 횟수 172
현재 버전 1.1.0
최근 업데이트 2023-12-18
출시 날짜 2023-12-04
평점 5.00/5 총 2 개의 평점
개발자 Mizan Rifat
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VoiceGPT",
    "version": "1.1.0",
    "description": "Voice chat for ChatGPT",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icons\/48x48.png"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "http:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle17021053531.chunk.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icons\/*.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}