-
-
Save satyendrakumarsingh/c2f0b08281c78e95d8db6f74c93ed3eb to your computer and use it in GitHub Desktop.
let autoNext = () => { | |
Array.from(document.querySelectorAll('button')) | |
.filter(b => b.textContent === 'Continue to next module') | |
.forEach(b => b.click()); | |
}; | |
setInterval(autoNext, 2500); |
Nice! I'd change the interval from 1000 to 5000. I found 1000 too aggressive.
Yeah. First of all, screw pluralsight for a HORRENDOUS user experience with lacking an OPTION for enabling autoplay, I am switching to tik tok in protest.
Second of all, this method does not work. It runs into an error in my browser stating paused on promise rejection: SyntaxError: Unexpected end of JSON input
I also see a F ton of "Your Appcues account has expired, but you have not uninstalled Appcues. Please contact us at [email protected]." errors and warnings all over the console.
I never do use the console on this browser for anything. I have attempted this with all extensions removed as well and it is still no go.
In conclusion, back to my first line and I will not be renewing the lowered quality platform any time soon. PDF books and e-books are less frustrating than this when give to an atuoreader. What is pluralsight thinking....
Yeah. First of all, screw pluralsight for a HORRENDOUS user experience with lacking an OPTION for enabling autoplay, I am switching to tik tok in protest.
Second of all, this method does not work. It runs into an error in my browser stating paused on promise rejection: SyntaxError: Unexpected end of JSON input
I also see a F ton of "Your Appcues account has expired, but you have not uninstalled Appcues. Please contact us at [email protected]." errors and warnings all over the console.
I never do use the console on this browser for anything. I have attempted this with all extensions removed as well and it is still no go.
In conclusion, back to my first line and I will not be renewing the lowered quality platform any time soon. PDF books and e-books are less frustrating than this when give to an atuoreader. What is pluralsight thinking....
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
Use browser console and paste above script.