(function() { const companyName = "ومضة"; const companyLink = "https://wamidah.com/"; const copyrightText = "تصميم وتسويق متجر سلة بواسطة"; const linkTitle = "ومضة للتسويق الرقمي وخبراء تطوير متاجر سلة"; const targetSelector = '.footer-rights'; function addCustomCopyright() { const footerRightsElement = document.querySelector(targetSelector); if (footerRightsElement && !document.querySelector('.custom-copyright-by-wamda')) { const copyrightHTML = ` `; footerRightsElement.insertAdjacentHTML('beforeend', copyrightHTML); return true; } return false; } const observer = new MutationObserver((mutationsList, obs) => { if (addCustomCopyright()) { obs.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); })();