ChatGPT Enter Key Control

Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc

Τι είναι το ChatGPT Enter Key Control;

Το ChatGPT Enter Key Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 0xCJ, και η κύρια λειτουργία του είναι "Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc".

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

screenshot
screenshot

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

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

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

                        Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc. 
Send messages in ChatGPT/Google Bard/chatpdf/poe etc using "Ctrl+Enter" combination. 
Additionally, there is a convenient toggle button that allows you to easily enable or disable the extension.                    

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

Όνομα ChatGPT Enter Key Control ChatGPT Enter Key Control
ID nllncjgkdkcabkomghcfgfaplgdnlcjo
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-enter-key-control/nllncjgkdkcabkomghcfgfaplgdnlcjo
Περιγραφή Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc
Μέγεθος Αρχείου 15.68 KB
Αριθμός Εγκαταστάσεων 387
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-07-13
Ημερομηνία Δημοσίευσης 2023-07-12
Αξιολόγηση 1.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής 0xCJ
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.0.0",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icons\/enter128.png"
        }
    },
    "icons": {
        "128": "icons\/enter128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "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\/*"
    ],
    "background": {
        "service_worker": "service_worker.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": [
                "content_script.js"
            ]
        }
    ]
}