hubber larper

no limit to the larp

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @license MIT
// @name         hubber larper
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  no limit to the larp
// @author       You
// @match        *://hubber.cc/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    const OLD_NAME = "00";
    const NEW_NAME = "0";
    const STAT_1 = "0";
    const STAT_2 = "0";

    function applyOverrides() {
        const usernames = document.querySelectorAll('span.font-medium.hover\\:underline.cursor-pointer');
        usernames.forEach(user => {
            if (user.innerText.trim() === OLD_NAME) {
                user.innerText = NEW_NAME;
            }
        });

        const stat1 = document.querySelector('div.text-sm.font-medium.text-white.truncate');
        if (stat1 && (stat1.innerText === OLD_NAME || stat1.innerText === "00")) {
            stat1.innerText = STAT_1;
        }

        const stat2 = document.querySelector('span.text-sm.text-white.flex-1.truncate.font-medium');
        if (stat2 && (stat2.innerText === OLD_NAME || stat2.innerText === "00")) {
            stat2.innerText = STAT_2;
        }
    }

    const observer = new MutationObserver(() => {
        applyOverrides();
    });

    if (document.body) {
        observer.observe(document.body, { childList: true, subtree: true });
        applyOverrides();
    }
})();