ASKGPT

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

Cos'è ASKGPT?

ASKGPT è un'estensione di Chrome sviluppata da contact.rahul1991, e la sua funzione principale è "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ASKGPT

Scarica i file di estensione ASKGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
URL Ufficiale https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
Descrizione Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
Dimensione del File 78.95 KB
Conteggio Installazioni 17
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-05-17
Data di Pubblicazione 2023-04-16
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore contact.rahul1991
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}