Skip to content

Instantly share code, notes, and snippets.

@ufukty
Created April 27, 2026 06:45
Show Gist options
  • Select an option

  • Save ufukty/648eb25564cc7bd54e13338a8308fe36 to your computer and use it in GitHub Desktop.

Select an option

Save ufukty/648eb25564cc7bd54e13338a8308fe36 to your computer and use it in GitHub Desktop.
Extract filenames from HumbleBundle page as in `First author - Book title` form
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