ToKeiChun

[Page] URL Grabber from Google Images Search Result

Oct 20th, 2024 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var links = document.querySelectorAll('.EZAeBe');  // Change the class name accordingly
  2. var hrefs = [];  
  3. links.forEach(function(link) {  
  4.   hrefs.push(link.href);  
  5. });  
  6. console.log(hrefs.join('\n'));
Add Comment
Please, Sign In to add comment