Speech to Text for ChatGPT

Adds a speech to text microphone into the ChatGPT website.

Qu'est-ce que Speech to Text for ChatGPT ?

Speech to Text for ChatGPT est une extension Chrome développée par zjdevelops, et sa fonction principale est "Adds a speech to text microphone into the ChatGPT website.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Speech to Text for ChatGPT

Téléchargez les fichiers d'extension Speech to Text for ChatGPT 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

                        🚀 Keyboard Shortcuts
Ctrl+S: Turn on/off speech to text
Ctrl+U: Clear the text
Ctrl+W: Delete the last word
Cmd+ ⬇️  ⬆️ : Cycle message history. (Ctrl for Windows)

🚀 Free & Open Source
Join our open-source initiative on GitHub (github.com/zubyj/speech-to-text-for-chatgpt). For issues,  suggestions, or questions, please open a ticket on Github.                    

Informations de Base sur l'Extension

Nom Speech to Text for ChatGPT Speech to Text for ChatGPT
ID kplchkeabimhnpklakhhocnhegidpcel
URL Officiel https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel
Description Adds a speech to text microphone into the ChatGPT website.
Taille du Fichier 35.62 KB
Nombre d'Installations 120
Version Actuelle 0.0.4
Dernière Mise à Jour 2023-08-07
Date de Publication 2023-07-12
Développeur zjdevelops
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité http://zubyj.github.io
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Speech to Text for ChatGPT",
    "version": "0.0.4",
    "description": "Adds a speech to text microphone into the ChatGPT website.",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/mic.png",
                "assets\/mic-active.png",
                "assets\/styles.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}