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