您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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();
- }
- }
- })();