Skip to content

Instantly share code, notes, and snippets.

View jelizaga3-gatech's full-sized avatar

jelizaga3-gatech

View GitHub Profile
@jelizaga3-gatech
jelizaga3-gatech / no-delay-udacity-no-side-bar.js
Last active August 25, 2019 07:26 — forked from ggorlen/no-delay-udacity.js
skip the 5-second delay between videos on udacity
(function () {
// click through the 5-second delay between udacity videos
new MutationObserver(function (mutations) {
for (var i = 0; i < mutations.length; i++) {
for (var j = 0; j < mutations[i].addedNodes.length; j++) {
try {
if (mutations[i].addedNodes[j].className.includes("index--auto-advance-overlay--BKc5y")) {
document.querySelector("._auto-advance-overlay--button--3yFIl").click();
}