// ---- بداية الكود الإضافي للتحكم ---- const POPUP_COOLDOWN_MINUTES = 5; // الفاصل الزمني بالدقائق const COOLDOWN_MILLISECONDS = POPUP_COOLDOWN_MINUTES * 60 * 1000; function showAdWithCooldown() { const lastPopupTime = localStorage.getItem('lastPopupTime'); const currentTime = new Date().getTime(); if (!lastPopupTime || (currentTime - parseInt(lastPopupTime) > COOLDOWN_MILLISECONDS)) { // ضع كود إعلان البوب أب هنا (function(s,u,z,p){s.src=u,s.setAttribute('data-zone',z),p.appendChild(s);})(document.createElement('script'),'https://arvigorothan.com/tag.min.js',7714242,document.body||document.documentElement); localStorage.setItem('lastPopupTime', currentTime); console.log('Popup shown. Next available after:', new Date(currentTime + COOLDOWN_MILLISECONDS)); } else { console.log('Popup on cooldown. Time remaining:', (COOLDOWN_MILLISECONDS - (currentTime - parseInt(lastPopupTime))) / 1000, 'seconds'); } } // استدعاء الدالة عند أي ضغطة على الصفحة document.addEventListener('click', showAdWithCooldown);
كود التضمين