Greasy Client - 3.8.2

Official Greasy Client

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 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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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         Greasy Client - 3.8.2
// @namespace    http://tampermonkey.net/
// @version      3.8.2
// @description  Official Greasy Client
// @author       Botless, Not_Cole & AngryWolfX
// @match        https://miniblox.io/*
// @run-at       document-start
// @license      MIT
// @grant        GM_xmlhttpRequest
// @grant        unsafeWindow
// @connect      raw.githubusercontent.com
// ==/UserScript==

(function() {
    'use strict';

    const base = "https://raw.githubusercontent.com/iykyk-zypher/Greasy-Client/refs/heads/main/greasy_client_v3_8_1.js";
    const url = base + "?t=" + Date.now();

    GM_xmlhttpRequest({
        method: "GET",
        url,
        onload: function(response) {
            if (response.status === 200) {
                try {
                    const script = document.createElement("script");
                    script.textContent = response.responseText + "\n//# sourceURL=greasy_client_v3_8_1.js";
                    (document.head || document.documentElement).appendChild(script);
                    console.log("[Greasy Loader] Loaded latest Greasy version.");
                } catch (e) {
                    console.error("[Greasy Loader] Failed to inject script:", e);
                }
            } else {
                console.error("[Greasy Loader] Fetch failed:", response.status, response.statusText);
            }
        },
        onerror: function(err) {
            console.error("[Greasy Loader] Network error:", err);
        }
    });
})();