Gartic.io Chat Nick Renk

gartic.io chat renk özelleştirme

// ==UserScript==
// @name         Gartic.io Chat Nick Renk
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  gartic.io chat renk özelleştirme
// @author       Ryzex
// @match        *://gartic.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = `
        /* Sohbette kendi kullanıcı adını kırmızı ve küçük yap */
        .msg.you strong {
            color: red !important;
            font-size: 12px !important; /* Yazı boyutunu küçült */
        }

        /* Kullanıcı listesindeki kendi adını kırmızı yap */
        .player.you .name {
            color: red !important;
        }
    `;
    document.head.appendChild(style);
})();

QingJ © 2025

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