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();
        }
    }
});