Greasy Fork is available in English.

World Language Games - Leave OLT Page

Allows you to leave the OLT page without having it submit automatically.

// ==UserScript==
// @name         World Language Games - Leave OLT Page
// @license      MIT
// @namespace    https://github.com/engelthehyp/Automation-for-World-Language-Games
// @version      1.1
// @description  Allows you to leave the OLT page without having it submit automatically.
// @author       https://github.com/engelthehyp/
// @match        *://wlangames.net/OnLineTest*
// @icon         https://www.google.com/s2/favicons?domain=wlangames.net
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function () {
	'use strict';

	window.$(window).off('blur');
})();