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.7
  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/1602254/%5BLibrary%5D%20-%20GS%20ENCH.js
  13. // @supportURL https://greasyfork.org/scripts/518384
  14. // @homepageURL https://greasyfork.org/scripts/518384
  15. // ==/UserScript==
  16.  
  17. (function() {
  18. 'use strict';
  19. if (!window.GSEnhancedUIInstance) {
  20. if (document.readyState === 'loading') {
  21. document.addEventListener('DOMContentLoaded', () => new GSEnhancedUI());
  22. } else {
  23. new GSEnhancedUI();
  24. }
  25. }
  26. })();