FMP Fast Login

Skip Discord loading

// ==UserScript==
// @name         FMP Fast Login
// @name:en      FMP Fast Login
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  跳过Discord加载
// @description:en Skip Discord loading
// @match        https://footballmanagerproject.com/*
// @match        https://www.footballmanagerproject.com/*
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle(`
    .splash-background{
        visibility: hidden;
    }
    `);
})();