Last active
January 3, 2020 17:59
-
-
Save efung/4ae755343d578ac9cc5392b1fb2e0242 to your computer and use it in GitHub Desktop.
Bookmarklet to expand all GitHub comments (works as of 2020-01-03)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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