Skip to content

Instantly share code, notes, and snippets.

@JamieMason
Last active February 5, 2025 15:06
Show Gist options
  • Save JamieMason/6f535ee301bfda5e34ad0816aaf27ca6 to your computer and use it in GitHub Desktop.
Save JamieMason/6f535ee301bfda5e34ad0816aaf27ca6 to your computer and use it in GitHub Desktop.
Get usernames of every GitHub user leaving a reaction to an issue or pull request

Get usernames of every GitHub user leaving a reaction to an issue or pull request

Anyone leaving a 👍, ❤️ etc.

Paste into the Browser console on the GitHub issue page.

Array.from(
  new Set(
    $$('[aria-label="Add or remove reactions"] + [role="tooltip"]')
      .map((el) => el.getAttribute("aria-label"))
      .flatMap((value) => value.split(/, | and /g))
      .sort(),
  ),
).forEach((value) => console.log(`@${value}`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment