Last active
December 15, 2022 14:01
-
-
Save satyendrakumarsingh/c2f0b08281c78e95d8db6f74c93ed3eb to your computer and use it in GitHub Desktop.
Pluralsight Auto Continue Script - Updated Script for Pluralsight Auto Next Module
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
let autoNext = () => { | |
Array.from(document.querySelectorAll('button')) | |
.filter(b => b.textContent === 'Continue to next module') | |
.forEach(b => b.click()); | |
}; | |
setInterval(autoNext, 2500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just confirmed it is still working without any errors. Has been working fine for months.
If this is still to difficult I have turned this script into a greasemonkey script (credit provided and source linked).
https://greasyfork.org/en/scripts/456621-pluralsight-auto-continue-script