window.onload = function() { setInterval(function() { let elements = document.querySelectorAll('*'); elements.forEach(function(el) { if (el.innerText && el.innerText.includes('HelpfulCrowd')) { el.style.display = 'none'; } }); }, 500); };