Welcome to Not That Damn Show!
document.addEventListener("DOMContentLoaded", function() {// Find any elements containing the voicemail textvar elements = document.querySelectorAll('*');for (var i = 0; i < elements.length; i++) {if (elements[i].textContent && elements[i].textContent.includes("Send us a Damn Voicemail")) {// Trace up to find the clickable tab/button containervar tab = elements[i].closest('div') || elements[i].closest('button') || elements[i];tab.style.setProperty('background-color', '#C8102E', 'important');tab.style.setProperty('border-color', '#C8102E', 'important');}}});