Skip to content

Instantly share code, notes, and snippets.

@kaseopea
Last active May 27, 2023 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaseopea/a3fd5afddd3071511eaf953c0c3c22d4 to your computer and use it in GitHub Desktop.
Save kaseopea/a3fd5afddd3071511eaf953c0c3c22d4 to your computer and use it in GitHub Desktop.
Count money spent on Aliexpress
/* Open /order-list page and scroll down to see all items, then paste this line in Chrome Developer Tools. */
console.log(`$${Math.ceil(Array.from(document.querySelectorAll('[class*="totalPrice"]')).reduce((acc, item) => acc + Number.parseFloat(item.textContent.replace(/[^\d\.]*/g, '')), 0))}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment