ChatGPT Enter Key Control

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

Co to jest ChatGPT Enter Key Control?

ChatGPT Enter Key Control to rozszerzenie Chrome opracowane przez 0xCJ, a jego główną funkcją jest „Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ChatGPT Enter Key Control

Pobierz pliki rozszerzeń ChatGPT Enter Key Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Enter Key Control ChatGPT Enter Key Control
ID nllncjgkdkcabkomghcfgfaplgdnlcjo
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-enter-key-control/nllncjgkdkcabkomghcfgfaplgdnlcjo
Opis Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc
Rozmiar pliku 15.68 KB
Liczba instalacji 387
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-07-13
Data Publikacji 2023-07-12
Ocena 1.67/5 Łącznie 3 Oceny
Deweloper 0xCJ
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}