X-Trench-Run Hack

no more updates from now on. look at your highscore.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         X-Trench-Run Hack
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  no more updates from now on. look at your highscore.
// @author       You
// @match        https://www.mathplayground.com/pg_x_trench_run.html
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Wait for the page to load
    window.addEventListener('load', function() {
        // Delay execution for 3 seconds
        setTimeout(function() {
            // Set the desired game data including coins and boosters
            localStorage.setItem('mjs-x-trench-run-v1.0.3', '{"sound":1,"music":0.5,"score":142543,"hasShownTutorial":false,"hasShownLaserGateTutorial":false,"laserGateTargetCount":6}');
            console.log('Hack Successful!');
        }, 500);
    });
})();