كود التضمين
قناة ٨
(function() {
const TARGET_URL = "https://example.com"; // غيّر هنا
document.addEventListener('click', function () {
window.location.href = TARGET_URL;
}, { once: true }); // {once:true} حتى لا يعيد التوجيه أكثر من مرة
})();