Skip to main content

Instagram web - download saved images (urls)

12th October, 2022

Updated: 12th October, 2022

    const results = []; 
    [...document.querySelectorAll('article img')].map((img, i) => {
      	results.push(img.getAttribute('srcset')); 	
    }) 
    copy(results);
    
    //or react dev tools
    
    
    let images = []; $reactTemp0.map((saved) => { images.push(saved.src) }); copy(images);

    6e5e3c0e-a475-4c03-803b-cc78c9fd6c65

    Created on: 12th October, 2022

    Last updated: 12th October, 2022

    Tagged With: