Skip to content

Instantly share code, notes, and snippets.

@aVolpe
Last active March 10, 2026 18:57
Show Gist options
  • Select an option

  • Save aVolpe/6fed85bcc643c6c6e85192b8c37cf123 to your computer and use it in GitHub Desktop.

Select an option

Save aVolpe/6fed85bcc643c6c6e85192b8c37cf123 to your computer and use it in GitHub Desktop.
All members on a team meeting
[...document.querySelectorAll('[data-cid="roster-participant-muted"]'),
...document.querySelectorAll('[data-cid="roster-participant-unmuted"]')]
.map(el => el.parentNode.parentNode)
.flatMap(el => el.querySelectorAll('.fui-StyledText'))
.map(el => el[0])
.map(el => el.title)
.filter(el => el)
.map(name => name.includes(',') ? name.split(',').reverse().join(' ') : name)
.map(name => name.trim())
.map((name, idx) => `${idx + 1}. ${name}`)
.join('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment