您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
no more updates from now on. look at your highscore.
- // ==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);
- });
- })();