Skip to content

Instantly share code, notes, and snippets.

View andrii-kvlnko's full-sized avatar

Andrii Kovalenko andrii-kvlnko

View GitHub Profile
@udaylunawat
udaylunawat / instagram_posts_saver.MD
Last active April 19, 2026 01:18
Save instagram posts as csv using chrome developer tools
(async function executeInstagramPostCollection(maxPosts = 10) {
    console.log(`Starting Instagram post collection (limit: ${maxPosts} posts)...`);

    // Verify we're on Instagram
    if (!window.location.hostname.includes('instagram.com')) {
        console.error("This script should be run on Instagram.com");
        return;
    }