NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Abre Foto Ludijogos/Mundijuegos
// @namespace pootz
// @description Abre Foto Sem Conta Premium no ludijogos - Abra Foto sin Premium en Mundijuegos
// @include http*://*ludijogos.com/player/*
// @include http*://*mundijuegos.com/player/*
// @version 1.4
// @require https://code.jquery.com/jquery-2.1.1.min.js
// @updateURL https://openuserjs.org/meta/pootz/Abre_Foto_LudijogosMundijuegos.meta.js
// @downloadURL https://openuserjs.org/install/pootz/Abre_Foto_LudijogosMundijuegos.user.js
// @grant GM_addStyle
// ==/UserScript==
$("p.listafotos a img").each ( function () {
var jThis = $(this);
var bigLink = jThis.prop ("src").replace (/\bmin\b/i, "max");
jThis.parent ().prop ("href", bigLink).removeProp ("onclick");
} );
$("a.usalbumfoto span img").each ( function () {
var jThis = $(this);
var bigLink = jThis.prop ("src").replace ("med_crop", "max");
$("a.usalbumfoto").prop ("href", bigLink).removeProp ("onclick");
} );