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은(는) 0xCJ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use "Enter" key for line breaks in ChatGPT/Google Bard/chatpdf/poe etc"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ChatGPT Enter Key Control 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}