krisztiantobias / Pmanager.org Next Opponent

// ==UserScript==
// @name			Pmanager.org Next Opponent
// @namespace		http://tampermonkey.net/
// @description		Instant Links
// @include			https://www.pmanager.org/prox_adv.asp*
// @version			1.01
// @license			MIT
// @grant			none
// ==/UserScript==

//list1 és list2 van

let $ = window.$;

$(document).ready(function()
{
	let teamlink = $("table#AutoNumber1 a").first();
	const id = teamlink.attr("href").split("=")[1];
	teamlink.after(" <a href=\"http://www.pmanager.org/ver_equipa.asp?equipa=" + id + "&vjog=1\">" +
					"<img title=\"Keret\" height=\"10\" width=\"10\" src=\"http://www.pmanagertutorial.nhely.hu/images/other/list.png\">" +
					"</a> " +
					"<a href=\"http://www.pmanager.org/calendario.asp?action=equipa&equipa=" + id + "\">" +
					"<img title=\"Sorsolás\" height=\"10\" width=\"10\" src=\"http://www.pmanagertutorial.nhely.hu/images/other/calendar.png\">" +
					"</a>")
}); // ready