AI Voice

Empower AI with voice capabilities

AI Voice là gì?

AI Voice là một tiện ích mở rộng Chrome được phát triển bởi Kunal J., và tính năng chính của nó là "Empower AI with voice capabilities".

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

screenshot
screenshot
screenshot

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

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

                        - Get real-time audio responses from multiple voices.
- Control the voice, voice speed and pitch for a personalized experience.
- Interact with your GPT using your voice.
- Enjoy a light-weight interface for seamless usage.
- Compatible with Google Bard
- Designed to work with multiple text-generative AI models.                    

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

Tên AI Voice AI Voice
ID cmjcclkobjffgdeefejdpjhoglokamcm
URL Chính Thức https://chromewebstore.google.com/detail/ai-voice/cmjcclkobjffgdeefejdpjhoglokamcm
Mô tả Empower AI with voice capabilities
Kích Thước Tệp 1.19 MB
Số Lần Cài Đặt 343
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-06-11
Ngày Phát Hành 2023-05-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Kunal J.
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",
    "name": "AI Voice",
    "author": "[email protected]",
    "version": "1.1.1",
    "description": "Empower AI with voice capabilities",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*",
        "https:\/\/bard.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.openai.com\/*",
                "https:\/\/bard.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        },
        {
            "css": [
                "contentScript.css"
            ],
            "matches": [
                "https:\/\/*.openai.com\/*",
                "https:\/\/bard.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": []
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon_.png",
            "24": "assets\/icon_.png",
            "32": "assets\/icon_.png"
        },
        "default_title": "AI Voice",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon_.png",
        "32": "assets\/icon_.png",
        "48": "assets\/icon_.png",
        "128": "assets\/icon_.png"
    },
    "manifest_version": 3
}