pootz / Manicomio-Share Cor

// ==UserScript==
// @name        Manicomio-Share Cor
// @namespace   pootz
// @description Muda a Cor do Numero de MPs, Baixado e Enviado
// @include     https://www.manicomio-share.com/*
// @version     1.0
// @history     -
// @require     https://code.jquery.com/jquery-2.2.3.min.js
// @updateURL   https://openuserjs.org/meta/pootz/Manicomio-Share_Cor.meta.js
// @downloadURL https://openuserjs.org/install/pootz/Manicomio-Share_Cor.user.js
// @grant       GM_addStyle
// ==/UserScript==

$(".server-info").each(function (){

    var jThis = $(this);
    var jChild = jThis.find("strong");

    if ( jThis.text().indexOf("MPs") != -1 ) {

        jChild.css('color', "#fff400");
        jChild.css('font-size', "18px");

    }

});

GM_addStyle ( '                         			\
    .server-info strong {					        \
        color: #00fff9;                             \
    }                                               \
' );