Fetlife Enter Key Auto-Send

Press Enter to click "Say It!" button, Shift+Enter for newline

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Fetlife Enter Key Auto-Send
// @namespace    https://fetlife.com/
// @version      1.0
// @description  Press Enter to click "Say It!" button, Shift+Enter for newline
// @match        https://fetlife.com/conversations/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('keydown', function(event) {
        // Ignore when typing in non-text areas or with Shift+Enter (newline)
        if (event.key === 'Enter' && !event.shiftKey) {
            event.preventDefault(); // prevent default Enter behavior

            // Find the "Say It!" button by its text
            const buttons = Array.from(document.querySelectorAll('button'));
            const sayItButton = buttons.find(btn =>
                btn.textContent.trim() === 'Say It!'
            );

            if (sayItButton) {
                // If it's disabled, try to click it anyway
                sayItButton.disabled = false;
                sayItButton.click();
                console.log('Clicked the "Say It!" button.');
            } else {
                console.warn('Say It! button not found.');
            }
        }
    });
})();