Simple Mimo.org Cheat

Set coins to 999999999

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

Advertisement:

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

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;
  });
};