Skip to content

Instantly share code, notes, and snippets.

@efung
Last active January 3, 2020 17:59
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 efung/4ae755343d578ac9cc5392b1fb2e0242 to your computer and use it in GitHub Desktop.
Save efung/4ae755343d578ac9cc5392b1fb2e0242 to your computer and use it in GitHub Desktop.
Bookmarklet to expand all GitHub comments (works as of 2020-01-03)
javascript:(function() { document.querySelectorAll(".js-comment-container").forEach(function (node) { node.setAttribute("open", true) }); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment