Skip to content

Instantly share code, notes, and snippets.

@Beyarz
Last active August 29, 2025 14:17
Show Gist options
  • Save Beyarz/e243034fc42ec399301685240a6a548d to your computer and use it in GitHub Desktop.
Save Beyarz/e243034fc42ec399301685240a6a548d to your computer and use it in GitHub Desktop.
Instagram profile auto scroll to bottom
// https://www.instagram.com/USER
const observer = new MutationObserver((mutations) => window.scrollTo(0, document.body.scrollHeight));
const profileNode = document.querySelector('main');
if (profileNode) {
observer.observe(profileNode, { childList: true, subtree: true });
window.scrollTo(0, document.body.scrollHeight);
}
// When reached bottom
// observer.disconnect();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment