←back to thread

Where did you go, Ms. Pac-Man?

(www.thrillingtalesofoldvideogames.com)
137 points glhaynes | 1 comments | | HN request time: 0s | source
Show context
johnchristopher ◴[] No.40711021[source]
Totally OT but: Godverdomme, why can't I right click those images of vintage ads :((((.
replies(3): >>40711675 #>>40712378 #>>40712743 #
waltbosz ◴[] No.40711675[source]
I hate when that happens.

Run this code in your JS console to get an array of the urls to the 3 ads.

  Array.from(document.querySelectorAll('img')).map(o=>o.src).filter(o=>o.includes('flyer'))
Or this to get the urls of all the images.

  Array.from(document.querySelectorAll('img')).map(o=>o.src)
replies(2): >>40712747 #>>40716353 #
1. crtasm ◴[] No.40712747[source]
You may like to try https://github.com/kubuzetto/behind