! CowGame Private Server

Moomoo.io private server for all type of needs!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name ! CowGame Private Server
// @author Murka
// @description Moomoo.io private server for all type of needs!
// @icon https://www.google.com/s2/favicons?sz=64&domain=moomoo.io
// @version 1.1
// @match *://moomoo.io/
// @match *://moomoo.io/?server*
// @match *://*.moomoo.io/
// @match *://*.moomoo.io/?server*
// @run-at document-start
// @grant none
// @license MIT
// @namespace https://greatest.deepsurf.us/users/919633
// ==/UserScript==
/* jshint esversion:6 */

/*
    Author: Murka
    Github: https://github.com/Murka007
    Greasyfork: https://greatest.deepsurf.us/users/919633
    Discord: https://discord.gg/cPRFdcZkeD

    HOW IT WORKS?
    Just simply go to moomoo.io and click PLAY.
    You'll be automatically redirected to a private server!
*/

(function() {
    "use strict";

    window.WebSocket = new Proxy(WebSocket, {
        construct(target, args) {
            args[0] = "wss://cowgame-private-server-production.up.railway.app/";
            return new target(...args);
        }
    });

})();