Last active
January 16, 2026 12:31
-
-
Save EddyVerbruggen/16b998dacc0e6c133dfa3e358d347db6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1) Open the "alle media" page of a house on funda.nl, fi. https://www.funda.nl/detail/koop/nijkerk/huis-angeler-4/43294917/overzicht/ | |
| // 2) Open a console and paste this script: | |
| setTimeout(() => { | |
| navigator.clipboard.writeText(Array | |
| .from(document.querySelectorAll("#photos img")) | |
| .map(i => i.src) | |
| .filter(v => v.includes('valentina')) | |
| // jpg?options=width=720 | |
| .map(v => v.replace('width=720', 'width=2160')) | |
| .join("\n")); | |
| console.log("copied to clipboard"); | |
| }, 5000); | |
| // 3) Within 5 seconds, click a blank spot on the page, so focus is given back to the website | |
| // 4a) On macOs, open a Terminal and paste: | |
| pbpaste | xargs -n 1 curl -L -O | |
| // 4b) On Windows, this may work: | |
| pbpaste | wget -i - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment