AI Voice

Empower AI with voice capabilities

AI Voiceคืออะไร?

AI Voice เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kunal J. และคุณลักษณะหลักของมันคือ "Empower AI with voice capabilities"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AI Voice

ดาวน์โหลดไฟล์ส่วนขยาย AI Voice ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AI Voice AI Voice
ID cmjcclkobjffgdeefejdpjhoglokamcm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ai-voice/cmjcclkobjffgdeefejdpjhoglokamcm
คำอธิบาย Empower AI with voice capabilities
ขนาดไฟล์ 1.19 MB
จำนวนการติดตั้ง 343
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2023-06-11
วันที่เผยแพร่ 2023-05-08
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Kunal J.
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
}