/* Add custom Js styles below */ // تأخير أي سكربتات خارجية (مثل واتساب/شات/تتبع) بعد أول تفاعل أو بعد 4 ثواني (function () { const delayedScripts = [ // حط روابط السكربتات الثقيلة هنا لو تعرفها // مثال: // "https://example.com/widget.js", ]; function loadScript(src) { const s = document.createElement("script"); s.src = src; s.async = true; s.defer = true; document.head.appendChild(s); } function run() { if (run.done) return; run.done = true; delayedScripts.forEach(loadScript); } window.addEventListener("touchstart", run, { once: true, passive: true }); window.addEventListener("scroll", run, { once: true, passive: true }); window.addEventListener("mousemove", run, { once: true, passive: true }); setTimeout(run, 4000); })(); put_pixel_code_here