Greasy Fork is available in English.

Driversed.com AutoClicker

Autoclicks the "Next" buttons on the driversed.com course!

// ==UserScript==
// @name         Driversed.com AutoClicker
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Autoclicks the "Next" buttons on the driversed.com course!
// @author       MinipongTV
// @match        https://driversed.com/*
// @grant        none
// ==/UserScript==

var titles = document.getElementsByClassName('btn')

setInterval(function(){ titles[1].click() }, 400)