Skip to content

Instantly share code, notes, and snippets.

@gerardosandoval
Last active November 25, 2024 15:56
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";}}))
@gerardosandoval
Copy link
Author

use "js-inline-comments-container" class now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment