GPT Vokal

Give voice instructions to ChatGPT.

GPT Vokal là gì?

GPT Vokal là một tiện ích mở rộng Chrome được phát triển bởi Nqedile, và tính năng chính của nó là "Give voice instructions to ChatGPT.".

Ả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 GPT Vokal

Tải xuống các tệp mở rộng GPT Vokal 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 extension allows you to send voice prompts to ChatGPT instead of typing your requests. 

Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.                    

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

Tên GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
URL Chính Thức https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
Mô tả Give voice instructions to ChatGPT.
Kích Thước Tệp 43.5 KB
Số Lần Cài Đặt 39
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-07-17
Ngày Phát Hành 2023-02-05
Nhà Phát Triển Nqedile
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Vokal",
    "description": "Give voice instructions to ChatGPT.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": ".\/options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}