ASKGPT

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

ASKGPT란 무엇입니까?

ASKGPT은(는) contact.rahul1991에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}