GameSense 2.1

GameSense 2.1 - Enhanced UI for GameSense Forums

// ==UserScript==
// @name         GameSense 2.1
// @namespace    http://tampermonkey.net/
// @version      1.0.3
// @description  GameSense 2.1 - Enhanced UI for GameSense Forums
// @author       Nado
// @license      MIT
// @match        https://gamesense.pub/forums/*
// @grant        GM_addStyle
// @grant        GM_getValue
// @grant        GM_setValue
// @require      https://update.greasyfork.org/scripts/518265/1488683/%5BLibrary%5D%20-%20GS%20ENCH.js
// ==/UserScript==

(function() {
    'use strict';
    
    // Sadece bir kere initialize et
    if (!window.GSEnhancedUIInstance) {
        if (document.readyState === 'loading') {
            document.addEventListener('DOMContentLoaded', () => new GSEnhancedUI());
        } else {
            new GSEnhancedUI();
        }
    }
})();