document.addEventListener('DOMContentLoaded', function() { function fixLinks() { document.querySelectorAll('a[href*="whatsapp.com/send"]').forEach(function(a) { a.href = 'whatsapp://send?phone=34669620149'; a.removeAttribute('target'); }); } fixLinks(); new MutationObserver(fixLinks).observe(document.body, { childList: true, subtree: true, attributes: true }); });