Simple Mimo.org Cheat

Set coins to 999999999

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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