Simple Mimo.org Cheat

Set coins to 999999999

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

Advertisement:

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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