ASKGPT

Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.

Τι είναι το ASKGPT;

Το ASKGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον contact.rahul1991, και η κύρια λειτουργία του είναι "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ASKGPT

Λήψη αρχείων επέκτασης ASKGPT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This cutting-edge feature utilizes advanced speech recognition and text-to-speech technologies for a seamless interactions.

Only Supported with OpenAI's GPT-3 tool

Features:
1. Lets you use your microphone to ask questions. Uses speech recognition and text-to-speech technologies
2. Reads response from chatgpt for you
3. You can configure a number voices from the configuration list. Automatically saves the configuration locally and lets you use without reconfiguring every time you use chatgpt
4. You can download code snippets easily.






ChatGpt 4: Work underprogress                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
Επίσημο URL https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
Περιγραφή Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
Μέγεθος Αρχείου 78.95 KB
Αριθμός Εγκαταστάσεων 17
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2023-05-17
Ημερομηνία Δημοσίευσης 2023-04-16
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής contact.rahul1991
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ASKGPT",
    "version": "1.0.4",
    "description": "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ASKGPT",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.png",
                "images\/icon.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}