←back to thread

Where did you go, Ms. Pac-Man?

(www.thrillingtalesofoldvideogames.com)
137 points glhaynes | 3 comments | | HN request time: 0.436s | 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 #
1. 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 #
2. crtasm ◴[] No.40712747[source]
You may like to try https://github.com/kubuzetto/behind
3. johnchristopher ◴[] No.40716353[source]
I should have the reflex to try things like that in the console more often.