Skip to content

Instantly share code, notes, and snippets.

@garpunkal
Last active December 25, 2022 09:47
Show Gist options
  • Save garpunkal/f9e676146a60cab99031e46080110a57 to your computer and use it in GitHub Desktop.
Save garpunkal/f9e676146a60cab99031e46080110a57 to your computer and use it in GitHub Desktop.
Unhide all reddit hidden posts
setInterval(function() { window.scrollTo(0, document.body.scrollHeight); Array.from(document.querySelectorAll('button span'))
.filter(el => el.textContent === 'unhide').forEach(el=>el.click()); }, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment