Hey @atwhite I just tried this out using Claude and it works
Third Party Scripts → INSERT BEFORE </BODY> TAG and drop this in:
<script>
// Auto-click "About" tab whenever the profile popup appears
new MutationObserver(() => {
const popup = document.querySelector('.popup-component');
if (!popup) return;
popup.querySelectorAll('.tabs__btn.qa-link-tab').forEach(tab => {
if (tab.textContent.trim().toLowerCase() === 'about' && !tab.classList.contains('tabs__btn--active'))
tab.click();
});
}).observe(document.body, { childList: true, subtree: true });
// Trigger the same popup on username hover as on avatar hover
['mouseover', 'mouseout'].forEach(evt =>
document.addEventListener(evt, e => {
const username = e.target.closest('.qa-username');
if (username) username.closest('.topic-view_header, .qa-topic-block')
?.querySelector('.default-avatar-link')
?.dispatchEvent(new MouseEvent(evt, { bubbles: true }));
})
);
</script>
And this in Custom CSS to show About first:
.qa-profile-tooltip-tabs {
display: flex;
flex-direction: row-reverse;
justify-content: flex-end;
}