Twitter Or Die! | Local SEO Guide
javascript:(function() { function createNewSVG() { const newSVG = document.createElementNS(“http://www.w3.org/2000/svg”, “svg”); newSVG.setAttribute(“viewBox”, “0 0 48 48”); newSVG.setAttribute(“width”, “48px”); newSVG.setAttribute(“height”, “48px”); return newSVG; } const elementsWithTwitterLabel = document.querySelectorAll(‘[aria-label=”Twitter”]’); if (!elementsWithTwitterLabel.length) { alert(“No elements with aria-label=\”Twitter\” found on the page.”); return; } elementsWithTwitterLabel.forEach((element) => { const targetSVG = element.querySelector(‘svg’); if (!targetSVG) return; const newSVG = … Read more