GameSense 2.1

GameSense 2.1 - Enhanced UI for GameSense Forums

  1. // ==UserScript==
  2. // @name GameSense 2.1
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.3
  5. // @description GameSense 2.1 - Enhanced UI for GameSense Forums
  6. // @author Nado
  7. // @license MIT
  8. // @match https://gamesense.pub/forums/*
  9. // @grant GM_addStyle
  10. // @grant GM_getValue
  11. // @grant GM_setValue
  12. // @require https://update.greasyfork.org/scripts/518265/1488683/%5BLibrary%5D%20-%20GS%20ENCH.js
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. // Sadece bir kere initialize et
  18. if (!window.GSEnhancedUIInstance) {
  19. if (document.readyState === 'loading') {
  20. document.addEventListener('DOMContentLoaded', () => new GSEnhancedUI());
  21. } else {
  22. new GSEnhancedUI();
  23. }
  24. }
  25. })();