If a company changes its icon (e.g., FB to Meta), will a one-liner work to replace all old icons with new ones? Like this:
Array.from(document.getElementsByClassName("old-icon")).forEach((item, ind) => item.src = 'newIcon.png')
Any other factors we should consider?