Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save leoossa/12ac1c1c80e780335c1298c3dfc0c548 to your computer and use it in GitHub Desktop.
Save leoossa/12ac1c1c80e780335c1298c3dfc0c548 to your computer and use it in GitHub Desktop.
Facebook Messenger Auto Scroll Old Messages 2024
// Run this and watch dates you wanna reach
var scrollingInterval = setInterval(function () {
document.querySelector('div[data-pagelet="MWVMessageList"] div[role="row"]').parentNode.parentNode.scrollTop=0
}, 500);
// hit this, once you reach
clearInterval(scrollingInterval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment