Fetlife Enter Key Auto-Send

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل 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.');
            }
        }
    });
})();