Talking ChatGPT

Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.

Τι είναι το Talking ChatGPT;

Το Talking ChatGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tobias Scharl, και η κύρια λειτουργία του είναι "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Talking ChatGPT

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

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

                        This extension is ideal for anyone who needs to quickly and efficiently convert spoken words into written text.

With the 62 different language and dialect options, you can easily choose your preferred language and accent for transcription. Whether you're speaking in English, Spanish, French, German, or any other language, ChatGPT Speech-to-Text will accurately transcribe your words with the appropriate dialect.

With the new speech to text functionality, you can now have a talking ChatGPT! The extension will now read out the responses off ChatGPT, at least if you want to.


This project is also available on Github: https://github.com/0xBitBuster/talking-chatgpt-extension                    

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

Όνομα Talking ChatGPT Talking ChatGPT
ID dppbeenbobngogcdfnocicajiegcofmo
Επίσημο URL https://chromewebstore.google.com/detail/talking-chatgpt/dppbeenbobngogcdfnocicajiegcofmo
Περιγραφή Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.
Μέγεθος Αρχείου 20.67 KB
Αριθμός Εγκαταστάσεων 354
Τρέχουσα Έκδοση 2.3
Τελευταία Ενημέρωση 2024-03-06
Ημερομηνία Δημοσίευσης 2023-04-03
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Tobias Scharl
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.3",
    "manifest_version": 3,
    "name": "Talking ChatGPT",
    "description": "Convert your speech into text so you can have a real conversation with (a talking) ChatGPT.",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/chatgpt-stt.js"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}