Speech to Text for ChatGPT

Adds a speech to text microphone into the ChatGPT website.

Τι είναι το Speech to Text for ChatGPT;

Το Speech to Text for ChatGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zjdevelops, και η κύρια λειτουργία του είναι "Adds a speech to text microphone into the ChatGPT website.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Speech to Text for ChatGPT

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

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

                        🚀 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.                    

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

Όνομα Speech to Text for ChatGPT Speech to Text for ChatGPT
ID kplchkeabimhnpklakhhocnhegidpcel
Επίσημο URL https://chromewebstore.google.com/detail/speech-to-text-for-chatgp/kplchkeabimhnpklakhhocnhegidpcel
Περιγραφή Adds a speech to text microphone into the ChatGPT website.
Μέγεθος Αρχείου 35.62 KB
Αριθμός Εγκαταστάσεων 120
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2023-08-07
Ημερομηνία Δημοσίευσης 2023-07-12
Προγραμματιστής zjdevelops
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου http://zubyj.github.io
Υποστηριζόμενες Γλώσσες 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\/*"
            ]
        }
    ]
}