/* === Wamidah Salla Store Copyright (Replacer) === */ (function() { const companyName = "ومضة"; const companyLink = "https://wamidah.com/"; const copyrightText = "تصميم وتسويق متجر سلة بواسطة"; const linkTitle = "ومضة للتسويق الرقمي وخبراء تطوير متاجر سلة"; const possibleSelectors = ['.copyright-text', '.footer-rights', 'span[class*="copyright"]']; function replaceCopyright() { let footerRightsElement = null; for (const selector of possibleSelectors) { footerRightsElement = document.querySelector(selector); if (footerRightsElement) { break; } } if (footerRightsElement && !footerRightsElement.querySelector('.custom-copyright-by-wamda')) { const copyrightHTML = ` `; footerRightsElement.innerHTML = copyrightHTML; footerRightsElement.style.textAlign = 'center'; footerRightsElement.style.width = '100%'; return true; } return false; } const observer = new MutationObserver((mutationsList, obs) => { if (replaceCopyright()) { obs.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); })();