Skip to content

Instantly share code, notes, and snippets.

@satyendrakumarsingh
Last active December 15, 2022 14:01
Show Gist options
  • Save satyendrakumarsingh/c2f0b08281c78e95d8db6f74c93ed3eb to your computer and use it in GitHub Desktop.
Save satyendrakumarsingh/c2f0b08281c78e95d8db6f74c93ed3eb to your computer and use it in GitHub Desktop.
Pluralsight Auto Continue Script - Updated Script for Pluralsight Auto Next Module
let autoNext = () => {
Array.from(document.querySelectorAll('button'))
.filter(b => b.textContent === 'Continue to next module')
.forEach(b => b.click());
};
setInterval(autoNext, 2500);
@satyendrakumarsingh
Copy link
Author

Use browser console and paste above script.

@John-Blair
Copy link

Nice! I'd change the interval from 1000 to 5000. I found 1000 too aggressive.

@spahbedsuren
Copy link

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 support@appcues.com." 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....

@DMCK96
Copy link

DMCK96 commented Dec 15, 2022

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 support@appcues.com." 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment