// expand all more reply on reddit
// for console use in developer tools
for(s of document.querySelectorAll`span`)s.textContent.includes`more reply`&&s.click()
// bookmarklet version
javascript:(()=>{for(s of document.querySelectorAll`span`)s.textContent.includes`more reply`&&s.click()})();Name:
"Expand All More Reply On Reddit" or any other name that tickles your pickle or flicks your bean
URL:
javascript:(()=>{for(s of document.querySelectorAll`span`)s.textContent.includes`more reply`&&s.click()})();The bookmark that you just created is what is referred to as a bookmarklet.
Click it whenever you are on Reddit and see "more reply" collapsed panels in the comments, it will expand all of them that it finds on the current page.