ASAPload auto-select

By moriakaice Last update Jun 5, 2008 — Installed 400 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript== 
// @name            ASAPload auto-select
// @description     Auto-select all hostings on ASAPload
// @include         *asapload.com* 
// ==/UserScript==

var test = document.evaluate( "//input[@type=\"checkbox\"]", document, null, 6, null);
for(var j=0; j<test.snapshotLength; j++)
{
	test.snapshotItem(j).setAttribute('checked', 'true');
}

var newS = document.createElement('script');
newS.innerHTML = "var max_hostings = 666;";

document.body.appendChild(newS);