Vanilla JavaScript way (instead of jQuery) to remove hyperlink but keep text:
const links = document.querySelectorAll('a[title="Show Profile"]')
links.forEach(link => {
const el = document.createElement('span')
el.textContent = link.textContent
link.parentNode.replaceChild(el, link)
})