NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name SC2TV Chat Custom Colors // @namespace sc2tv // @description Дай свой цвет любому в чатике \m/ // @include http://chat.sc2tv.ru/* // @version 0.1 // @grant none // @grant GM_info // ==/UserScript== var usersObj = { 'NeoGamer': 'red', 'Panzer': 'white', }; /* jquery workarounds ? */ if ( window != null && window.jQuery != null ) { var $ = window.jQuery; } else if( unsafeWindow != null && unsafeWindow.jQuery != null ) { var $ = unsafeWindow.jQuery; } /**/ $(function(){ setInterval(function() { $(".mess span.nick").each(function() { if( usersObj[$(this).text()] != null ) { $(this).attr('style', 'color:'+usersObj[$(this).text()]+' !important'); } }); }, 2000); });