←back to thread

Where did you go, Ms. Pac-Man?

(www.thrillingtalesofoldvideogames.com)
137 points glhaynes | 8 comments | | HN request time: 0s | source | bottom
1. johnchristopher ◴[] No.40711021[source]
Totally OT but: Godverdomme, why can't I right click those images of vintage ads :((((.
replies(3): >>40711675 #>>40712378 #>>40712743 #
2. 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 #
3. joezydeco ◴[] No.40712378[source]
You can visit the Arcade Flyers Museum for legit downloadable versions. It's probably where the author got them from in the first place.

https://flyers.arcade-museum.com/

replies(1): >>40716342 #
4. crtasm ◴[] No.40712743[source]
If you mean you can't right-click at all, try holding shift.

But there's no 'view image', so install the wonderful Behind! extension: https://github.com/kubuzetto/behind

replies(1): >>40716343 #
5. crtasm ◴[] No.40712747[source]
You may like to try https://github.com/kubuzetto/behind
6. johnchristopher ◴[] No.40716342[source]
Thanks !
7. johnchristopher ◴[] No.40716343[source]
Ooooh thanks, I was so hell bent on complaining that I didn't even try ff extensions and other tricks.
8. johnchristopher ◴[] No.40716353[source]
I should have the reflex to try things like that in the console more often.