Greasy Fork is available in English.

Ladderle Fixer

makes the ladderle game usable

// ==UserScript==
// @name         Ladderle Fixer
// @namespace    https://fxzfun.com/
// @version      0.2
// @description  makes the ladderle game usable
// @author       FXZFun
// @match        https://areaviral.com/ladderle/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=areaviral.com
// @grant        none
// @license      GNU GPL v3
// ==/UserScript==

(function() {
    'use strict';
    var i=setInterval(()=>{
        // keep at the gameboard
        document.querySelector(".gameHeader").scrollIntoView();
    }, 10);

    document.body.addEventListener("keydown", () => {
        // scroll to current word
        var e=document.querySelectorAll(".gameBoard .inputRowsContainer .row");
        e[e.length-1].scrollIntoViewIfNeeded();
    });

})();