Greasy Fork

Duolingo autoScroller

Automatically scrolls to the last completed checkpoint when Duolingo loads.

目前为 2020-01-20 提交的版本。查看 最新版本

// ==UserScript==
// @name        Duolingo autoScroller
// @description Automatically scrolls to the last completed checkpoint when Duolingo loads.
// @version     1.0
// @namespace   minirock
// @match       https://www.duolingo.com/learn
// ==/UserScript==

window.onload = function(){
    let elem = document.querySelectorAll("div[data-test='level-crown']");
    elem = elem[elem.length - 1];
    if(elem !== null) elem.scrollIntoView(true);
};