Chat GPT voice

Make GPT chat talk and talk to it with voice

Chat GPT voice là gì?

Chat GPT voice là một tiện ích mở rộng Chrome được phát triển bởi lp177, và tính năng chính của nó là "Make GPT chat talk and talk to it with voice".

Ả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 Chat GPT voice

Tải xuống các tệp mở rộng Chat GPT voice 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

                        Adds the ability to interact with chatGPT with your voice thanks to multilingual TTS (text to speech) and STT (speech to text) features.                    

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

Tên Chat GPT voice Chat GPT voice
ID pjfkaiaapagfpadblmlhigdepafjdkmb
URL Chính Thức https://chromewebstore.google.com/detail/chat-gpt-voice/pjfkaiaapagfpadblmlhigdepafjdkmb
Mô tả Make GPT chat talk and talk to it with voice
Kích Thước Tệp 19.81 KB
Số Lần Cài Đặt 133
Phiên Bản Hiện Tại 3.001.1028
Cập Nhật Lần Cuối 2023-08-24
Ngày Phát Hành 2023-08-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển lp177
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lp177/Chat-GPT-voice
URL Trang Trợ Giúp https://github.com/lp177/Chat-GPT-voice/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat GPT voice",
    "version": "3.001.1028",
    "description": "Make GPT chat talk and talk to it with voice",
    "options_page": "settings.html",
    "permissions": [
        "storage",
        "tabs",
        "tts"
    ],
    "action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "background": {
        "service_worker": "sw.js"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "integrations\/chat.openai.js"
            ],
            "css": [
                "integrations\/chat.openai.css"
            ]
        }
    ]
}