Skip to content

Instantly share code, notes, and snippets.

@radekstepan
Created February 18, 2014 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radekstepan/9082732 to your computer and use it in GitHub Desktop.
Save radekstepan/9082732 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name DuoSkipper
// @description Skip test questions on Duolingo by pressing Enter.
// @include https://www.duolingo.com/practice
// @version 1.0
// ==/UserScript==
window.addEventListener('load', function() {
$(document).keypress(function(evt) {
if (evt.keyCode == 13) {
$('#skip_button').click();
setTimeout(function() {
$('#next_button').click();
}, 1e3)
}
});
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment