Skip to content

Instantly share code, notes, and snippets.

@Kenya-West
Created July 3, 2025 06:51
Show Gist options
  • Save Kenya-West/9f2ff9537bac29226414907cd773e32c to your computer and use it in GitHub Desktop.
Save Kenya-West/9f2ff9537bac29226414907cd773e32c to your computer and use it in GitHub Desktop.
Copy usernames from X/Twitter dialog "List members"

Copy usernames from X/Twitter dialog "List members"

  1. First, open Lists you have setup to track cohorts of people
  2. Then open list members

Paste this code in browser DevTools (F12) below. It will give youi

Array.from(document.querySelectorAll("div[role='dialog'] a[href] .css-1jxf684.r-bcqeeo"))
.filter((item) => item.innerText.startsWith("@"))
.forEach((item) => console.log(item.innerText))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment