ChatGPT Ctrl+Enter Sender
Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter.
Τι είναι το ChatGPT Ctrl+Enter Sender;
Το ChatGPT Ctrl+Enter Sender είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον masachika.kmd, και η κύρια λειτουργία του είναι "Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Ctrl+Enter Sender
Λήψη αρχείων επέκτασης ChatGPT Ctrl+Enter Sender σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
                        The ChatGPT Ctrl+Enter Sender is an extension that allows you to send messages on sites like ChatGPT using "Ctrl+Enter". You can now use the Enter key, which was originally used to send messages, to create a new line, so there will be no more accidental sending of messages by pressing the Enter key. By clicking the icon, you can easily toggle the extension on/off with a switch button.
You can use this extension on the following pages:
ChatGPT
Poe (https://poe.com)
phind (https://www.phind.com)
Bard (https://bard.google.com)
ChatPDF (https://www.chatpdf.com)
perplexity (https://www.perplexity.ai)
※ If you encounter any bugs or have any concerns, please open an issue on the following GitHub repository and we will address it.
https://github.com/masachika-kamada/ChatGPT-Ctrl-Enter-Sender                     Βασικές Πληροφορίες Επέκτασης
| Όνομα |   |  
| ID | gbncgdhklmnckojlibfhdadpfbcdbnch | 
| Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-ctrl+enter-sender/gbncgdhklmnckojlibfhdadpfbcdbnch | 
| Περιγραφή | Use 'Ctrl+Enter' for sending messages in ChatGPT. Prevents accidental sends and allows line breaks with Enter. | 
| Μέγεθος Αρχείου | 16.37 KB | 
| Αριθμός Εγκαταστάσεων | 10,000 | 
| Τρέχουσα Έκδοση | 1.2.0 | 
| Τελευταία Ενημέρωση | 2023-09-05 | 
| Ημερομηνία Δημοσίευσης | 2023-04-11 | 
| Αξιολόγηση | 4.52/5 Συνολικά 25 Αξιολογήσεις | 
| Προγραμματιστής | masachika.kmd | 
| Ηλεκτρονικό ταχυδρομείο | [email protected] | 
| Τύπος Πληρωμής | free | 
| Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/masachika-kamada/ChatGPT-Ctrl-Enter-Sender | 
| Υποστηριζόμενες Γλώσσες | en,zh-CN,ja | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "1.2.0",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Kamada Masachika",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/poe.com\/*",
                "https:\/\/www.phind.com\/*",
                "https:\/\/bard.google.com\/*",
                "https:\/\/www.chatpdf.com\/*",
                "https:\/\/www.perplexity.ai\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*",
        "https:\/\/poe.com\/*",
        "https:\/\/www.phind.com\/*",
        "https:\/\/bard.google.com\/*",
        "https:\/\/www.chatpdf.com\/*",
        "https:\/\/www.perplexity.ai\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon\/icon16.png",
            "48": "icon\/icon48.png",
            "128": "icon\/icon128.png"
        }
    }
}  |  |