By mohace
—
Last update
Sep 18, 2007
—
Installed
195 times.
// ==UserScript==
// @name manzanasfrescas nav
// @author mohace
// @description manzanasfrescas: Seleccion de universo predeterminado
// @include http://www.manzanasfrescas.com/updown.php?game=*
// @include http://www.manzanasfrescas.com/stats.php?game=*
// @include http://www.manzanasfrescas.com/statsbanned.php?game=*
// @include http://www.manzanasfrescas.com/top.php?game=*
// @include http://www.manzanasfrescas.com/search.php?game=*
// ==/UserScript==
// Configurar///////////////////////////////////////
var v_uni = 22 // Poner el universo en que se juega / Set game universe.
///////////////////////////////////////////////////
var v_select = document.getElementsByTagName("select");
v_select[0].selectedIndex = v_uni - 1;
var v_focus = document.getElementsByTagName('input');
if(document.baseURI.indexOf("top.php?") != -1) {
v_select[0].selectedIndex = 0;
}
v_focus[0].focus();