Compact Chat

Toggle chat compactfulness

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