ChatGPT - Lets talk

Add voice to ChatGPT

Τι είναι το ChatGPT - Lets talk;

Το ChatGPT - Lets talk είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ejaz Bawasa, και η κύρια λειτουργία του είναι "Add voice to ChatGPT".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Voice chat with the ChatGPT on its site using few keyboard shortcuts.

# Updates
Version 1.1.5 - Update
- Updated to work with the latest URL change of ChatGPT site.

Version 1.1.4 - Update
- Modified to work with the latest changes of ChatGPT site (Mar 23 version)

Version 1.1.2 - Update
- Improved UI for the popup.

Version 1.1.0 - Update
- Now you can change the voice of the AI and configure the pitch of the voice and the rate of speaking.



# Features:
1. Does not use any third party libraries or external network/API calls. 
2. No UI - just keyboard shortcuts that make it possible to use the extension.
3. Created using native JavaScript using stuff available on the browser.



# Instructions to use
1. Ask questions using your microphone
To voice chat and ask ChatGPT questions using your microphone, press the following combination of keys simultaneously:

Windows: Alt + Shift + F
Mac: Option + Shift + F

Once the keys are pressed the extension will be actively listening, so just ask questions using your voice. The extension will listen and submit your question. The answer will be read out loud automatically after being generated.


2. Hear ChatGPT repeat the last answer
Although the extension will read the answer out loud once it's finished generating it, you can also make it repeat its last answer. To do so, press the following combination of keys simultaneously:

Windows: Alt + Shift + J
Mac: Option + Shift + J

ChatGPT's last answer will be read out loud.


3. Stop the voice while it's reading the answer.
To stop the voice while it's reading the answer out loud, press the following combination of keys simultaneously:

Windows: Alt + Shift + P
Mac: Option + Shift + P

If pressed while the answer is being read out loud, the reading will stop.



# Troubleshooting: 
1. Cannot hear the answer being read out loud, visit the following URL:
https://github.com/obfuscatedgeek/chatgpt-lets-talk#cannot-hear-the-answer                    

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

Όνομα ChatGPT - Lets talk ChatGPT - Lets talk
ID ldkeljfcpadfpkfdloofmhamhkgdcpbo
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-lets-talk/ldkeljfcpadfpkfdloofmhamhkgdcpbo
Περιγραφή Add voice to ChatGPT
Μέγεθος Αρχείου 18.22 KB
Αριθμός Εγκαταστάσεων 425
Τρέχουσα Έκδοση 1.1.5
Τελευταία Ενημέρωση 2023-04-20
Ημερομηνία Δημοσίευσης 2023-02-21
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Ejaz Bawasa
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/obfuscatedgeek/chatgpt-lets-talk
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/obfuscatedgeek/chatgpt-lets-talk
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT - Lets talk",
    "version": "1.1.5",
    "description": "Add voice to ChatGPT",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat?",
                "https:\/\/chat.openai.com\/chat*",
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/assets\/icon-16x16.png",
        "24": "\/assets\/icon-32x32.png",
        "32": "\/assets\/icon-32x32.png",
        "48": "\/assets\/icon-48x48.png",
        "128": "\/assets\/icon-128x128.png"
    },
    "action": {
        "default_title": "ChatGPT - Lets talk",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/assets\/icon-16x16.png",
            "24": "\/assets\/icon-32x32.png",
            "32": "\/assets\/icon-32x32.png",
            "48": "\/assets\/icon-48x48.png",
            "128": "\/assets\/icon-128x128.png"
        }
    },
    "commands": {
        "listen": {
            "suggested_key": "Alt+Shift+F",
            "description": "Listen"
        },
        "talk": {
            "suggested_key": "Alt+Shift+J",
            "description": "Talk"
        },
        "pause": {
            "suggested_key": "Alt+Shift+P",
            "description": "Pause"
        }
    }
}