Gartic.io sohbetinde kendi kullanıcı adını siyah gösterir
当前为
// ==UserScript==
// @name Gartic.io - Chat Nick Rengi
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Gartic.io sohbetinde kendi kullanıcı adını siyah gösterir
// @author Ryzex
// @match *://gartic.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement('style');
style.innerHTML = `
/* Kullanıcı adını siyah yap black yazan yere istediğiniz renk ismini koynilirsiniz*/
.msg.you strong {
color: black !important;
}
`;
document.head.appendChild(style);
})();