Created
April 27, 2026 06:45
-
-
Save ufukty/648eb25564cc7bd54e13338a8308fe36 to your computer and use it in GitHub Desktop.
Extract filenames from HumbleBundle page as in `First author - Book title` form
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
| copy( | |
| [...document.querySelectorAll(".slick-slide")] | |
| .map( | |
| (s) => | |
| `${ | |
| s.querySelector(".publishers-and-developers span")?.innerText?.split(",")[0].trim() | |
| } - ${ | |
| s.querySelector("h2")?.innerText?.trim() | |
| }`, | |
| ) | |
| .join("\n"), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment