// ==UserScript== // @name LingQ with better UX // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author ibn_rushd // @match https://www.lingq.com/* // @grant none // @downloadURL none // ==/UserScript== addEventListener('load', function () { //make sure the last course you did before completing is the first one in the course. var course = document.querySelector('.lessons-wrap .lesson-list') var total_completed = document.querySelectorAll('.completed').length; var current_lesson = course.childNodes[total_completed]; course.insertBefore(current_lesson, course.firstChild); });