Skip to content

Instantly share code, notes, and snippets.

@gerardosandoval
Last active May 4, 2018 19:23
Show Gist options
  • Save gerardosandoval/1a197b78585235267a72b3c6371145e6 to your computer and use it in GitHub Desktop.
Save gerardosandoval/1a197b78585235267a72b3c6371145e6 to your computer and use it in GitHub Desktop.
Toggle Github Comments Bookmarklet
// Help you see referenced PR's And issues faster by hidding comments
javascript:(document.querySelectorAll(".edit-comment-hide").forEach(function(el){if (el.style.display === "none") {el.style.display = "block";} else {el.style.display = "none";}}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment