Chat Improvements

Chat improvements script

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Chat Improvements
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Chat improvements script
// @author       realwdpcker
// @match        pixelplace.io/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const INPUT_SELECTOR = '#chat input[type="text"]';
    let lastInputValue = '';
    let clearTimer = null;

    function setupInputWatcher() {
        const input = document.querySelector(INPUT_SELECTOR);
        if (!input) return;

        function startClearTimer() {
            if (clearTimer) clearTimeout(clearTimer);
            clearTimer = setTimeout(() => {
                input.value = '';
                lastInputValue = '';
            }, 5000);
        }

        input.addEventListener('input', () => {
            lastInputValue = input.value;
            startClearTimer();
        });

        input.addEventListener('blur', () => {
            if (!input.value && lastInputValue) {
                input.value = lastInputValue;
            }
        });

        input.addEventListener('keydown', (event) => {
            if (event.key === 'Enter') {
                setTimeout(() => {
                    input.value = '';
                    lastInputValue = '';
                    if (clearTimer) clearTimeout(clearTimer);
                }, 10);
            }
        });

        const form = input.closest('form');
        if (form) {
            form.addEventListener('submit', () => {
                lastInputValue = '';
                if (clearTimer) clearTimeout(clearTimer);
            });
        }
    }

    const observer = new MutationObserver(() => {
        const input = document.querySelector(INPUT_SELECTOR);
        if (input) {
            setupInputWatcher();
            observer.disconnect();
        }
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();