Skip to content

Instantly share code, notes, and snippets.

@nkgokul
Created September 9, 2019 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkgokul/4d25370921f8028a260189818f2b3720 to your computer and use it in GitHub Desktop.
Save nkgokul/4d25370921f8028a260189818f2b3720 to your computer and use it in GitHub Desktop.
Get list of users on "twitter users search page" https://twitter.com/search?q=gokulnk&src=typed_query&f=user
Array.from(document.querySelectorAll('section a span')).filter(function(el){return el.textContent.indexOf("@") > -1}).reduce(function(ac,cv){return ac + cv.textContent + ", "});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment