Skip to content

Instantly share code, notes, and snippets.

@jesterjunk
Created February 17, 2025 06:08
Show Gist options
  • Select an option

  • Save jesterjunk/9a072505a74c2b236815a96c0e18dcb4 to your computer and use it in GitHub Desktop.

Select an option

Save jesterjunk/9a072505a74c2b236815a96c0e18dcb4 to your computer and use it in GitHub Desktop.
Expand All More Reply On Reddit

Expand All More Reply On Reddit


// 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()})();

Create a new bookmark with the following parameters:

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.

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