const links = document.getElementsByClassName('js-card-name') const updateLinks = () => Array.from(links).forEach(link => { const matched = link.getAttribute('href').match(/\/c\/\w*/) if (!matched) return link.setAttribute('href', matched[0]) }) window.addEventListener('DOMContentLoaded', () => { updateLinks() setInterval(updateLinks, 2000) })