Simple Mimo.org Cheat

Set coins to 999999999

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

Advertisement:

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

Advertisement:

// ==UserScript==
// @name         Simple Mimo.org Cheat
// @namespace    http://duohacker.io.vn
// @author       DuoHacker
// @license      MIT
// @version      1.0
// @description  Set coins to 999999999
// @match        *://mimo.org/*
// @match        *://*.mimo.org/*
// @grant        none
// @icon         https://d1wqzb5bdbcre6.cloudfront.net/d30cd64b805c0b9234c9403ae4508ec7f3802a4c1063e3a480d40db78e9955ad/68747470733a2f2f66696c65732e7374726970652e636f6d2f6c696e6b732f4d44423859574e6a644638784f464a495331424c54475577626b6c4a616c464c66475a7358327870646d5666543235325a554e5a646a523251546475656d7056627a4a694d54597862554e46303077597a4843337378/6d65726368616e745f69643d616363745f313852484b504b4c65306e49496a514b26636c69656e743d5041594d454e545f50414745
// ==/UserScript==

const originalFetch = window.fetch;
window.fetch = function(...args) {
  return originalFetch.apply(this, args).then(response => {
    if (args[0].includes('api.mimo.org/v1/user/coins')) {
      return response.clone().json().then(data => {
        data.coins = 999999999;
        return new Response(JSON.stringify(data), {
          status: response.status,
          statusText: response.statusText,
          headers: response.headers
        });
      }).catch(() => response);
    }
    return response;
  });
};