GPT Vokal

Give voice instructions to ChatGPT.

Qu'est-ce que GPT Vokal ?

GPT Vokal est une extension Chrome développée par Nqedile, et sa fonction principale est "Give voice instructions to ChatGPT.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension GPT Vokal

Téléchargez les fichiers d'extension GPT Vokal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension allows you to send voice prompts to ChatGPT instead of typing your requests. 

Install it, refresh the page, you should be able to see a mic icon next to the textarea of ChatGPT. If that doesn't work, open another tab and then back to the original ChatGPT tab and it should work fine.                    

Informations de Base sur l'Extension

Nom GPT Vokal GPT Vokal
ID dhjabboeafgfmofgjiegaenmiikcdcpd
URL Officiel https://chromewebstore.google.com/detail/gpt-vokal/dhjabboeafgfmofgjiegaenmiikcdcpd
Description Give voice instructions to ChatGPT.
Taille du Fichier 43.5 KB
Nombre d'Installations 39
Version Actuelle 1.0.3
Dernière Mise à Jour 2023-07-17
Date de Publication 2023-02-05
Développeur Nqedile
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Vokal",
    "description": "Give voice instructions to ChatGPT.",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "options_page": ".\/options.html",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}