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
}