(function () { function addMadeWithSalla() { // إذا كانت العبارة موجودة لا نكررها if (document.getElementById("custom-salla-made")) return; const box = document.createElement("div"); box.id = "custom-salla-made"; box.innerHTML = 'صنع بإتقان على منصة سلة'; document.body.appendChild(box); } document.addEventListener("DOMContentLoaded", addMadeWithSalla); setTimeout(addMadeWithSalla, 1000); setInterval(addMadeWithSalla, 2000); })();