WirnCael / HachedeFreeLeechReal?

// ==UserScript==
// @name					HachedeFreeLeechReal?
// @namespace		hachedeFreeLeechReal
// @description		Comprueba si es freeleech o 0.5x
// @icon				https://hachede.me/favicon.ico?lv=2.2
// @include				https://hachede.me/*
// @include				http://hachede.me/*
// @version				3
// @author				WirnCael
// @grant					none
// @require				http://code.jquery.com/jquery-1.11.2.min.js
// @priority				1
// @run-at				document-end
// @downloadURL https://openuserjs.org/install/WirnCael/HachedeFreeLeechReal.user.js
// ==/UserScript==

var j = jQuery.noConflict(true);

j( document ).ready(function( $ ) {
	if(location.href.indexOf("p=torrents") > -1){
		fCompruebaFreeleech();
	}  
    
    fCompruebaFreeLeechTorrentsRecientes();
});

/****  Cambia las imagenes del 0.5x de bajada y las de 1.5x y 2x de subida.  ****/
function fCompruebaFreeleech(){
	j( "img[original-title='Multiplicador de descarga: 0.5']" ).attr("src", "http://i.imgur.com/2hao6yT.png");          // Cambia la imagen del 0.5x de bajada
    j( "img[original-title='Multiplicador de subida: 1.5']" ).attr("src", "http://i.imgur.com/ru8wn9r.png");            // Cambia la imagen del 1.5x de subida
    j( "img[original-title='Multiplicador de subida: 2']" ).attr("src", "http://i.imgur.com/YnzHDTy.png");              // Cambia la imagen del 2x de subida
}

/**** Cambia las imagenes del 0.5x de bajada y las de 1.5x y 2x de subida en el panel de Torrents recientes.  ****/
function fCompruebaFreeLeechTorrentsRecientes(){
    
    /* Cambia las de 0.5x de bajada */
    j( "#recentTorrents").find(".scrollable" ).find(".items").find(".widthoutSidebar, .widthSidebar").find("img[alt*='Multiplicador de descarga: 0.5']").closest("img").each(function()
    {
        var origTitle = $(this).attr("original-title");        
        $(this).attr("original-title", origTitle.replace("https://hachede.me/styles/default/torrents/torrent_free.png", "http://i.imgur.com/2hao6yT.png"));
    }); 
    
    /* Cambia las de 1.5x de subida */
    j( "#recentTorrents").find(".scrollable" ).find(".items").find(".widthoutSidebar, .widthSidebar").find("img[alt*='Multiplicador de subida: 1.5']").closest("img").each(function()
    {
        var origTitle = $(this).attr("original-title");        
        $(this).attr("original-title", origTitle.replace("https://hachede.me/styles/default/torrents/torrent_multiple_upload.png", "http://i.imgur.com/ru8wn9r.png"));
    }); 
    
    /* Cambia las de 2x de subida */
    j( "#recentTorrents").find(".scrollable" ).find(".items").find(".widthoutSidebar, .widthSidebar").find("img[alt*='Multiplicador de subida: 2']").closest("img").each(function()
    {
        var origTitle = $(this).attr("original-title");        
        $(this).attr("original-title", origTitle.replace("https://hachede.me/styles/default/torrents/torrent_multiple_upload.png", "http://i.imgur.com/YnzHDTy.png"));
    }); 
}