ASKGPT

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

ASKGPT là gì?

ASKGPT là một tiện ích mở rộng Chrome được phát triển bởi contact.rahul1991, và tính năng chính của nó là "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ASKGPT

Tải xuống các tệp mở rộng ASKGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
URL Chính Thức https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
Mô tả Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
Kích Thước Tệp 78.95 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-05-17
Ngày Phát Hành 2023-04-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển contact.rahul1991
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}