This file contains 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
// First, go to https://shopee.co.th/user/purchase, and open DevTools. | |
// Step 1 - Run this code to scroll all the way to the bottom. | |
const timer = setInterval(() => scrollTo(0, 10000000), 800) | |
setTimeout(() => { | |
// Step 2 - Stop scrolling after 1 minute. | |
clearInterval(timer) | |
// Step 3 - Sum the total purchase price! |