You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've often found opening every single link on the course website under the weekly topics to be very frustrating and annoying. Hence I wrote a simple script that clicks on all the > carets. This currently works on Chrome for me and opens only the > carets on the weekly topic page.
var inputs = document.getElementsByClassName("glyphicon glyphicon-chevron-right")
inputsArray = Array.prototype.slice.call(inputs, 0)
// then we filter the Array:
.filter(function (el) {
return !(el.ariaHidden);
});
inputsArray
.forEach((element) => element.click());
Steps to use:
Open developer tools.
Open the console tab.
Paste the script into the console and wait.
hingen, damithc, jefrai, jiasheng59, kayyenl and 1 morekayyenl