Skip to content

Instantly share code, notes, and snippets.

@nashiki
Last active March 26, 2017 02:58
Show Gist options
  • Save nashiki/d03e05824e83dfd69e994977901a827a to your computer and use it in GitHub Desktop.
Save nashiki/d03e05824e83dfd69e994977901a827a to your computer and use it in GitHub Desktop.
This bookmarklet is all open GitHub pull requests. So, `Show outdated` in Conversation tab and `Load diff` in Files changed tab.
javascript:(function() {var i,l;l = document.getElementsByClassName("outdated-comment"); for (i = 0; i < l.length; i++) { l[i].classList.add("open");};l = document.getElementsByClassName("load-diff-button"); for (i = 0; i < l.length; i++) { l[i].click();};}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment