// ==UserScript==
// @name           Press Run!
// @namespace      http://ourada.org/pressrun
// @description    Presses run buttons on localhost task queues until all gone
// @include        http://localhost:8001/_ah/admin/tasks?queue=*
// ==/UserScript==

var inps = document.getElementsByTagName("input");
for (var i in inps)
{
	var inp = inps[i];
	if (inp.value == 'Run')
	{
		inp.click();
		break;
	}
}


