Poe Force 0x0A

Inserts a newline instead of sending the message on poe.com

// ==UserScript==
// @name         Poe Force 0x0A
// @namespace    http://tampermonkey.net/
// @author       TwilightAlicorn
// @version      1.0
// @license      MIT
// @description  Inserts a newline instead of sending the message on poe.com
// @match        https://poe.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('keydown', function(e) {
        if (e.key === 'Enter' && !e.shiftKey) {
            e.preventDefault();
            e.stopPropagation();

            // Get the active element (the textarea)
            const activeElement = document.activeElement;

            if (activeElement && activeElement.tagName.toLowerCase() === 'textarea') {
                // Insert a newline at the cursor position
                const start = activeElement.selectionStart;
                const end = activeElement.selectionEnd;
                const value = activeElement.value;
                
                activeElement.value = value.slice(0, start) + '\n' + value.slice(end);
                
                // Move the cursor after the newline
                activeElement.selectionStart = activeElement.selectionEnd = start + 1;

                // Trigger an input event to update the internal state
                const inputEvent = new Event('input', { bubbles: true });
                activeElement.dispatchEvent(inputEvent);
            }
        }
    }, true);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址