Skip to content

Instantly share code, notes, and snippets.

@bossjones
Created May 22, 2025 03:50
Show Gist options
  • Save bossjones/79d2fc042d1e31f588a4c7764d57235d to your computer and use it in GitHub Desktop.
Save bossjones/79d2fc042d1e31f588a4c7764d57235d to your computer and use it in GitHub Desktop.
get_imgUrls.js
// This script collects the URLs of all images with the class 'bbImage' on the page. SS
const imageUrls = Array.from(document.querySelectorAll('img.bbImage')).map(img => img.src);
console.log(imageUrls);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment