Nexus Chat

In-game real-time chat overlay for resurviv.biz and survev.io.

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         Nexus Chat
// @namespace    http://tampermonkey.net/
// @icon         https://i.ibb.co/FkXVWJnC/Chat-GPT-Image-26-jun-2026-19-06-21.png
// @version      1.0
// @description  In-game real-time chat overlay for resurviv.biz and survev.io.
// @author       ! System with ❤️
// @license      MIT
// @match        *://resurviv.biz/*
// @match        *://survev.io/*
// @match        *://*.resurviv.biz/*
// @match        *://*.survev.io/*
// @run-at       document-start
// @grant        GM.xmlHttpRequest
// @connect      nexus-chat-p7ph.onrender.com
// ==/UserScript==

(function() {
    'use strict';
    if (window.__nexusChatLoaded) return;
    window.__nexusChatLoaded = true;

    GM.xmlHttpRequest({
        method: 'GET',
        url: 'https://nexus-chat-p7ph.onrender.com/client.js',
        onload: function(response) {
            const script = document.createElement('script');
            script.textContent = response.responseText;
            document.head.appendChild(script);
        },
        onerror: function(err) {
            console.error('[NexusChat] Error loading chat:', err);
        }
    });
})();