Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Forked from csham/show-hidden-comments.js
Created April 22, 2020 04:46
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 a2ikm/cc21b19f8725dc1d9620eebd6f789a9b to your computer and use it in GitHub Desktop.
Save a2ikm/cc21b19f8725dc1d9620eebd6f789a9b to your computer and use it in GitHub Desktop.
Show all hidden comments on github's issue page.
var showHiddenCommentsButtons = document.getElementsByClassName('Details-content--closed');
for (var i=0; i < showHiddenCommentsButtons.length; i++) {
showHiddenCommentsButtons[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment