Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlexcastroDev/e022967cbfbcffe1e40b507aa48b96f9 to your computer and use it in GitHub Desktop.
Save AlexcastroDev/e022967cbfbcffe1e40b507aa48b96f9 to your computer and use it in GitHub Desktop.
get all Zoom participants
// get all Zoom participants
Object.values(document.getElementsByClassName('participants-ul')[0].getElementsByClassName('participants-item__display-name')).map(item => item.innerText).join(',')
// Remove sidebar wol.jw.org
document.getElementById('secondaryNavContent').style.display = 'none'
document.getElementsByClassName('articlePositioner')[0].style.margin = '0px'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment