Custom Play Sort V2

sdfsdf

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name           Custom Play Sort V2
// @namespace      pbr
// @include        http://goallineblitz.com/game/team_create_defense.pl?team_id=*
// @version        10.01.29
// @copyright      2010, pabst
// @license        (CC) Attribution Share Alike; http://creativecommons.org/licenses/by-sa/3.0/
// @description sdfsdf
// ==/UserScript==

window.setTimeout(
    function() {
		main();
    }
, 100);

function main() {
	var tbl = document.getElementsByTagName("table");
	for (var i=0; i<tbl.length; i++) {
		tbl[i].style.visibility = "hidden";
//		console.log(i+":::>>> "+tbl[i].innerHTML.slice(0,60));
		for (var r=1; r<tbl[i].rows.length-1; r++) {
			var lowest = r;
			for (var r2=r+1; r2<tbl[i].rows.length; r2++) {
				var p2 = tbl[i].rows[r2].textContent;
				if (p2 < tbl[i].rows[lowest].textContent) {
					lowest = r2;
				}
			}
			if (lowest != r) {
				var t1 = tbl[i].rows[r].innerHTML;
				var t2 = tbl[i].rows[lowest].innerHTML;
				tbl[i].rows[r].innerHTML = t2;
				tbl[i].rows[lowest].innerHTML = t1;
			}
//				console.log(p1+"--> "+p2);
		}
		tbl[i].style.visibility = "visible";
	}
}