Created
December 3, 2021 16:08
-
-
Save tastycode/6c2e99257212e515a4542cd64fd4d016 to your computer and use it in GitHub Desktop.
Waves plugin sorter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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