Greasy Fork is available in English.
Restores general chat (unstable)
// ==UserScript==
// @name Gartic Chat Fix Beta - Greasy Fork Special
// @namespace http://tampermonkey.net/
// @version 1.0.3
// @description Restores general chat (unstable)
// @author Yusf
// @match https://gartic.io/*
// @grant GM_xmlhttpRequest
// @connect raw.githubusercontent.com
// @run-at document-start
// @license Custom License - See: https://github.com/yusifmuradliroot/gartictools-openscript_reconstruction?tab=License-1-ov-file
// ==/UserScript==
(function(){'use strict';const U="https://raw.githubusercontent.com/yusifmuradliroot/gartictools-openscript_reconstruction/main/loader_main/inject.js.txt";function I(c){if(!c)return;const s=document.createElement('script');s.textContent=c;s.type='text/javascript';(document.head||document.documentElement).appendChild(s);}GM_xmlhttpRequest({method:"GET",url:U,onload:function(r){if(r.status===200&&r.responseText)I(r.responseText);},onerror:function(){}});})();