Compact Chat

Toggle chat compactfulness

คุณจะต้องติดตั้งส่วนขยาย เช่น 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.

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.

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         Compact Chat
// @namespace    http://tampermonkey.net/
// @version      2024-11-15
// @description  Toggle chat compactfulness
// @author       Realwdpcker on PixelPlace.io
// @match        https://pixelplace.io/*
// @icon         https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSPzgxYoFXDSUZWfvztvgoWkP_slpX8hNloHg&s
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const compactToggle = () => {
        const rows = document.querySelectorAll('#container #chat .messages .row');
        rows.forEach(row => {
            row.style.padding = '2px 0px';
        });
    };

    const observer = new MutationObserver(compactToggle);
    const target = document.querySelector('#container');
    if (target) {
        observer.observe(target, { childList: true, subtree: true });
    }
})();