Skip to content

Instantly share code, notes, and snippets.

@JamesSkemp
Last active August 18, 2021 22:41
Show Gist options
  • Save JamesSkemp/1ffdfd1caac91d3010580a9d9a583e4a to your computer and use it in GitHub Desktop.
Save JamesSkemp/1ffdfd1caac91d3010580a9d9a583e4a to your computer and use it in GitHub Desktop.
Humble Bundle individual page titles

Run in browser console, while viewing an individual bundles page post-purchase.

let items = [];
let titles = $('.gameinfo .title');
for (let i = 0; i < titles.length; i++) {
	items.push(titles[i].innerText);
}
console.log(items);

Should be able to .each, but was getting a cross-domain error so ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment