Last active
August 29, 2025 14:17
-
-
Save Beyarz/e243034fc42ec399301685240a6a548d to your computer and use it in GitHub Desktop.
Instagram profile auto scroll to bottom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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