document.addEventListener("DOMContentLoaded", function () { if (window.innerWidth < 1024) return; const targetContent = document.querySelector( ".store-footer__inner .flex.flex-col.gap-4" ); const appsIcons = document.querySelector( "#app > footer > div.store-footer__inner.notah-store-footer__inner > div > salla-apps-icons" ); if (!targetContent || !appsIcons) return; if (document.querySelector(".footer-extra-column")) return; const newColumn = document.createElement("div"); newColumn.className = "footer-extra-column"; newColumn.appendChild(targetContent); appsIcons.parentNode.insertBefore(newColumn, appsIcons); }); document.addEventListener("DOMContentLoaded", function () { const socialWrapper = document.querySelector(".store-footer__inner.notah-store-footer__inner > div > div > div.flex.flex-col.gap-4 > div"); if (!socialWrapper) return; if (document.querySelector(".business-verification-wrapper")) return; const verifyHTML = `
السجل التجاري

السجل التجاري

2053126300
`; socialWrapper.insertAdjacentHTML("afterend", verifyHTML); }); document.addEventListener("DOMContentLoaded", function () { const taxWrapper = document.querySelector( ".store-footer__inner.notah-store-footer__inner > div > div > div.flex.flex-col.gap-4 > div" ); if (!taxWrapper) return; if (taxWrapper.querySelector(".tax-icon")) return; const img = document.createElement("img"); img.src = "https://asas-tools.com/u/uploads/sara_craffo/tax.webp"; img.alt = "Tax Icon"; img.className = "tax-icon"; taxWrapper.prepend(img); });