Talk-to-ChatGPT

Talk to ChatGPT through your microphone and hear its responses with a voice. Uses speech recognition and text-to-speech technologies

Τι είναι το Talk-to-ChatGPT;

Το Talk-to-ChatGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον GBAtemp, και η κύρια λειτουργία του είναι "Talk to ChatGPT through your microphone and hear its responses with a voice. Uses speech recognition and text-to-speech technologies".

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

screenshot
screenshot
screenshot

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

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

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

                        Talk to ChatGPT through your microphone and hear its responses with a voice. You no longer need a keyboard to interact with ChatGPT! It is completely free of charge and open source.

To use it, open the ChatGPT home page. A box will appear at the top right corner of the page - click the START button to start. You may want to adjust the settings too: language, speed, pitch...

This extension supports all voice recognition and text-to-speech languages from the Google Chrome API, which means all major languages are supported. You can also use the ElevenLabs API to get access to an infinity of voices for ChatGPT.

The extension adds a little box at the top right corner of your screen where you can toggle voice recognition on or off, the bot's voice (text to speech), skip the current message, and access the settings menu.

Version 2.9.0 - December 3rd, 2023
- New: added Azure Text-To-Speech (#210) Full credits: lout33
- Updated: ElevenLabs - added eleven_english_sts_v2 and eleven_turbo_v2 models
- Fixed: ElevenLabs - cloned voices can be used with all models (#200)

Version 2.8.1 - October 9th, 2023
- Fixed: conflict with OpenAI's new image upload functionality (#189)

Version 2.8.0 - September 30th, 2023
- Updated: more compact widget (#186)
- Updated: lot of code refactoring and cleanup (credit: PxPerfectMike)

Version 2.7.2 - September 23rd, 2023
- New: added an option to prevent the text-to-speech engine from reading emojis (#166) Credit: PxPerfectMike
- Updated: added a note in the voice command setting area to remind users that voice control only works when the microphone is active
- Fixed: red bar indicating microphone activity didn't activate after a pause or complete stop                    

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

Όνομα Talk-to-ChatGPT Talk-to-ChatGPT
ID hodadfhfagpiemkeoliaelelfbboamlk
Επίσημο URL https://chromewebstore.google.com/detail/talk-to-chatgpt/hodadfhfagpiemkeoliaelelfbboamlk
Περιγραφή Talk to ChatGPT through your microphone and hear its responses with a voice. Uses speech recognition and text-to-speech technologies
Μέγεθος Αρχείου 99.62 KB
Αριθμός Εγκαταστάσεων 284,964
Τρέχουσα Έκδοση 2.9.0
Τελευταία Ενημέρωση 2023-12-04
Ημερομηνία Δημοσίευσης 2022-12-27
Αξιολόγηση 4.20/5 Συνολικά 251 Αξιολογήσεις
Προγραμματιστής GBAtemp
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/C-Nedelcu/talk-to-chatgpt
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/C-Nedelcu/talk-to-chatgpt/issues
URL της Σελίδας Πολιτικής Απορρήτου https://gbatemp.net/help/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Talk-to-ChatGPT",
    "version": "2.9.0",
    "description": "Talk to ChatGPT through your microphone and hear its responses with a voice. Uses speech recognition and text-to-speech technologies",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png"
        },
        "default_title": "Talk-to-ChatGPT V2.9.0"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "fontawesome.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "offscreen"
    ]
}