Skip to content

Instantly share code, notes, and snippets.

View satyendrakumarsingh's full-sized avatar
🎯
Focusing

Satyendra Singh satyendrakumarsingh

🎯
Focusing
View GitHub Profile
@satyendrakumarsingh
satyendrakumarsingh / pluralsight-auto-next-module.js
Last active December 15, 2022 14:01
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);