Skip to content

Instantly share code, notes, and snippets.

@lingsamuel
Last active September 2, 2018 20:11
Show Gist options
  • Save lingsamuel/8d8137164ebcb3b4632cb83270dc03b8 to your computer and use it in GitHub Desktop.
Save lingsamuel/8d8137164ebcb3b4632cb83270dc03b8 to your computer and use it in GitHub Desktop.
Output all items' name in Steam cart
// In https://store.steampowered.com/cart/
// Get array
Array.from(document.getElementsByClassName("cart_item_desc")).map(x=>x.innerText);
// Get title text
Array.from(document.getElementsByClassName("cart_item_desc")).map(x=>x.innerText).join("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment