ASKGPT

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

Hvad er ASKGPT?

ASKGPT er en Chrome-udvidelse udviklet af contact.rahul1991, og dens hovedfunktion er "Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download ASKGPT-udvidelses-CRX-fil

Download ASKGPT-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn ASKGPT ASKGPT
ID amigdhjjcecdkgfeajdlgpejminlfhok
Officiel URL https://chromewebstore.google.com/detail/askgpt/amigdhjjcecdkgfeajdlgpejminlfhok
Beskrivelse Experience ChatGPT's voice-enabled interface by speaking into your microphone and listening to its responses.
Filstørrelse 78.95 KB
Antal Installationer 17
Nuværende Version 1.0.4
Senest Opdateret 2023-05-17
Udgivelsesdato 2023-04-16
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler contact.rahul1991
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}