Skip to content

Instantly share code, notes, and snippets.

@tastycode
Created December 3, 2021 16:08
Show Gist options
  • Save tastycode/6c2e99257212e515a4542cd64fd4d016 to your computer and use it in GitHub Desktop.
Save tastycode/6c2e99257212e515a4542cd64fd4d016 to your computer and use it in GitHub Desktop.
Waves plugin sorter
console.log(JSON.stringify([...document.querySelectorAll(".react-list-page__star-rating-total")].map(el => [parseInt(el.innerText.replace(/[^0-9]/g,'')), el.parentNode.parentNode.querySelector(".react-list-page__product-title").innerText]).sort( (a,b) => b[0]-a[0]), null, 4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment