Skip to content

Instantly share code, notes, and snippets.

View Esirei's full-sized avatar

Akpesiri Okorigba Esirei

View GitHub Profile
@Esirei
Esirei / auto-next.js
Last active November 16, 2022 16:35
Pluralsight AutoNext Module
let autoNext = () => {
Array.from(document.querySelectorAll('.player-modal.is-active button'))
.filter(b => b.textContent === 'Continue to next module')
.forEach(b => b.click());
};
setInterval(autoNext, 5000);