Skip to content

Instantly share code, notes, and snippets.

@Uvacoder
Forked from insin/console.js
Created June 21, 2024 18:46
Show Gist options
  • Select an option

  • Save Uvacoder/980627efd94f17d3481c538e0f571c75 to your computer and use it in GitHub Desktop.

Select an option

Save Uvacoder/980627efd94f17d3481c538e0f571c75 to your computer and use it in GitHub Desktop.
Get currently-loaded user entities on twitter.com
entities = $('#react-root')._reactRootContainer._internalRoot?.current?.memoizedState?.element?.props?.children?.props?.store?.getState()?.entities?.users?.entities
users = {}
for (let user of Object.values(entities)) {
users[user.screen_name] = user
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment