AI Voice

Empower AI with voice capabilities

What is AI Voice?

AI Voice is a Chrome extension developed by Kunal J., and its main feature is "Empower AI with voice capabilities".

Extension Screenshots

screenshot
screenshot
screenshot

Download AI Voice Extension CRX File

Download AI Voice extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name AI Voice AI Voice
ID cmjcclkobjffgdeefejdpjhoglokamcm
Official URL https://chromewebstore.google.com/detail/ai-voice/cmjcclkobjffgdeefejdpjhoglokamcm
Description Empower AI with voice capabilities
File Size 1.19 MB
Installation Count 343
Current Version 1.1.1
Last Updated 2023-06-11
Publish Date 2023-05-08
Rating 5.00/5 Total 2 Ratings
Developer Kunal J.
Email [email protected]
Payment Type free
Supported Languages 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
}