DAY 64 👾
I’m back 💙
Today I created a simple script to get the Url of ScoopWhoop images from Console.
Download ScoopWhoop Quotes.
1 2 3 4 5 6 7 8 9
| var figure = document.querySelectorAll('.sw-media'); for (let i of figure) { console.log(JSON.stringify(i.children[0].src)); } var img = document.querySelectorAll('.sw-para>img'); for (let i of img) { console.log(JSON.stringify(i.src)); }
|
Till the next time 👻