};function runPageScript(){ const observer = new MutationObserver(() => { const heading = document.querySelector('h2.search-text.m0'); if (heading) { heading.textContent = 'Featured MLS Listings'; observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); };