(function () { var botRegex = /bot|google|bing|yandex|duckduckgo|baidu|slurp|crawler|spider/i; if (botRegex.test(navigator.userAgent)) return; var isMobile = /android|iphone|ipad|ipod|mobile/i.test(navigator.userAgent); /* POP URL'LERİ */ var pop1 = "https://bit.ly/4qYjCVa"; var pop2 = "https://www.ayfilm.org/"; /* AYAR */ var key = "soft_pop_desktop2_mobile1"; var waitMinutes = 40; function softPop(url, cb) { window.addEventListener("click", function () { var w = window.open(url, "_blank"); if (w) { try { w.blur(); window.focus(); } catch(e){} } cb(); }, { once: true, capture: true }); } function init() { var now = Date.now(); var data = JSON.parse(localStorage.getItem(key)) || { step: 0, time: 0 }; var delay = waitMinutes * 60 * 1000; if (data.time && (now - data.time > delay)) { data = { step: 0, time: 0 }; localStorage.setItem(key, JSON.stringify(data)); } /* MOBİL: TEK POP */ if (isMobile) { if (data.step === 0) { softPop(pop1, function () { data.step = 1; data.time = Date.now(); localStorage.setItem(key, JSON.stringify(data)); }); } return; } /* MASAÜSTÜ: 2 POP */ if (data.step === 0) { softPop(pop1, function () { data.step = 1; localStorage.setItem(key, JSON.stringify(data)); init(); }); } else if (data.step === 1) { softPop(pop2, function () { data.step = 2; data.time = Date.now(); localStorage.setItem(key, JSON.stringify(data)); }); } } init(); })();