Created
May 22, 2025 03:50
-
-
Save bossjones/79d2fc042d1e31f588a4c7764d57235d to your computer and use it in GitHub Desktop.
get_imgUrls.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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