Chat Improvements

Chat improvements script

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

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