FA Shoutbox iHax

Avoir les FontAwesome sur la Shoutbox Ihax

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         FA Shoutbox iHax
// @namespace    http://www.ihax.fr/
// @namespace    http://www.ihax.fr/taigachat/
// @version      1.1
// @description  Avoir les FontAwesome sur la Shoutbox Ihax 
// @author       Marentdu93
// @match        http://www.ihax.fr/
// @match        http://www.ihax.fr/taigachat/
// @grant        none
// ==/UserScript==
$(document).ready(function(){

    $('head').append('<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">');
        
});
var FAchat = {
	msgID: [],
	__msgID: [],	
    fatext: "[FA]fa-",
    fatext2: "fa-spin[/FA]",
    init: function(){
        setInterval(function(){FAchat.CheckFA();}, 1);
	
	},
	
	CheckFA: function(){
		var msg = $('#taigachat_box').children('ol').children('li');
		for(var i in msg) {
			var id = msg.eq(i).data('messageid');
			var msg_text = $('#taigachat_box').children('ol').children('li[data-messageid="' + id + '"]').children('span').eq(1).children('div').text().trim();       
            if(msg_text.indexOf(this.fatext) != -1){
               var azerty = msg_text;
                var split1 = msg_text.split('[FA]');
                var split2 = split1[1].split('[/FA]');
                var idfa = split2[0].replace(",","");
                var res = azerty.replace(idfa, "");
                var azert = res.replace("[/FA]", "");
                var test1 = azert.split("[FA]");
                $('#taigachat_box').children('ol').children('li[data-messageid="' + id + '"]').children('span').eq(1).children('div').text('');
              document.getElementById('taigachat_message_' + id).getElementsByTagName('span')[2].getElementsByTagName('div')[0].innerHTML = test1[0] +'<i class="fa ' + idfa + '" aria-hidden="true"></i>'+ test1[1];
             
               
            }
           
		}
	},
};

FAchat.init();