Draft

 

 

<script>
// قائمة المواقع المستثناة
var excludedSites = [
‘khaleedmega.com’, // استبدل هذا بعنوان الموقع الذي تريد استثناؤه
‘www.khaleedmega.com’,
‘tiktok.com’,
‘www.tiktok.com’,
‘instagram.com’,
‘www.instagram.com’,
‘youtube.com’,
‘www.youtube.com’,
‘twitter.com’,
‘www.twitter.com’,
‘facebook.com’,
‘www.facebook.com’,
‘pinterest.com’,
‘linkedin.com’
];

function shouldExclude(url) {
return excludedSites.some(function(domain) {
return url.indexOf(domain) !== -1;
});
}

document.addEventListener(‘DOMContentLoaded’, function() {
var links = document.getElementsByTagName(‘a’);

for (var i = 0; i < links.length; i++) {
(function(link) {
link.addEventListener(‘click’, function(event) {
var href = link.getAttribute(‘href’);

// التحقق مما إذا كان الرابط يجب استثناؤه
if (href && !shouldExclude(href)) {
event.preventDefault();

var redirectUrl = ‘https://khaled-mega.com/link-redirect/#’ + encodeURIComponent(href);
window.location.href = redirectUrl;
}
});
})(links[i]);
}
});
</script>

 

زر الذهاب إلى الأعلى
إغلاق

الإعلانات تساعدنا في الاستمرار بتقديم محتوى مجاني وعالي الجودة لكم.

كيف يمكنكم تعطيل حاجب الإعلانات؟

  1. استخدموا الأيقونة الخاصة بحاجب الإعلانات في شريط الأدوات الخاص بالمتصفح.
  2. اختروا خيار "تعطيل" أو "إيقاف" على الموقع الذي تزورونه.
  3. انتظروا قليلاً حتى يتم تحميل الصفحة بالكامل.
 

شكرًا لتفهمكم ودعمكم المستمر!