Fetlife Enter Key Auto-Send

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

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

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

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

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

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

// ==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.');
            }
        }
    });
})();