Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. // click the "more members" button programatically to get everyone who likes dank memes
  2. window.setInterval(() => { document.querySelector('.uiMorePagerPrimary').click() }, 5000);
  3.  
  4. // get the names of everyone who likes dank memes
  5. Array.from(document.querySelectorAll('.fsl.fwb.fcb')).map(a => { return a.innerText });
  6.  
  7. // get the 100x100 profile photo URLs of everyone who likes dank memes
  8. Array.from(document.querySelectorAll('._s0._rv.img')).map(img => { return img.src });
  9.  
  10. // get the times the dank memers were added (non-fuzzy strings)
  11. Array.from(document.querySelectorAll('._51mx .fsm.fwn.fcg abbr')).map(abbr => { return abbr.title });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement