Skip to content

Instantly share code, notes, and snippets.

@hltbra
Created May 15, 2012 23:29
Show Gist options
  • Save hltbra/2705971 to your computer and use it in GitHub Desktop.
Save hltbra/2705971 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Udacity EXT - Auto next video&quiz
// @description Udacity Extension -- Automatically go to the next video or quiz question upon reaching the end of the current one
// @namespace http://sepczuk.com/
// @version 0.2
// @include http://www.udacity.com/view*
// @match http://www.udacity.com/view*
// @copyright 2012, Damian Sepczuk, Hugo Lopes Tavares
// ==/UserScript==
function mainWrapper(){
function main(){
if (window.App.player === undefined) {
setTimeout(main, 300);
return;
}
App.player.addEventListener('onStateChange', function(p){
if (p.data === YT.PlayerState.ENDED) {
$('#course-next-button .button').click();
}
})
};
main();
};
if (!document.xmlVersion) {
var script = document.createElement('script');
script.appendChild(document.createTextNode('('+ mainWrapper +')();'));
document.documentElement.appendChild(script);
}
@hltbra
Copy link
Author

hltbra commented May 16, 2012

This gist is based on this script: http://userscripts.org/scripts/review/126694, and I only adapted it.

I just "fixed" it to work with the new Udacity UI, made no refactoring/improvement :-)

@bernardobarreto
Copy link

ok then.. =P

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