ChatGPT: Auto-Click Send Button on Enter

Clicks the send button when Enter is pressed

2024-01-30 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name         ChatGPT: Auto-Click Send Button on Enter
// @namespace    chatgptfixes
// @version      0.1
// @description  Clicks the send button when Enter is pressed
// @match        https://chat.openai.com/*
// @grant        none
// @license      The Unlicense
// ==/UserScript==

document.addEventListener('keydown', function(event) {
    if (event.key === 'Enter') {
        var sendButton = document.querySelector('[data-testid="send-button"]');
        if (sendButton) {
            sendButton.click();
        }
    }
});