monkey smashing keyboards
monkey smashing keyboards
After further digging(testing on [this](https://www.pinterest.com/pin/29695678788111907/)), it seems that on every image there's a script tag named "__PWS_INITIAL_PROPS__" that has a list of image sizes, including the original. https://regex101.com/r/IAmYqE/1 ```javascript const...
After even more further digging(testing on [this](https://www.pinterest.com/pin/69665125479478586/)), when you're not signed in, you can use the following regex: ```javascript let p = /https:\/\/i.pinimg.com\/(\d{3}x)\/[0-9a-f/]{41}\.jpg/gm; [...new Set(document.body.innerHTML.match(p))]; ``` to match all the...