Old nexusmods Games UI

18.03.2025, 16:15:36

// ==UserScript==
// @name        Old nexusmods Games UI
// @namespace   Violentmonkey Scripts
// @match       https://www.nexusmods.com/*
// @grant       none
// @version     1.4
// @author      Artyom104
// @description 18.03.2025, 16:15:36
// @license MIT
// @run-at document-start
// ==/UserScript==

(function() {
    'use strict';
    return; // disable script because it doesn't work any more since nexus devs removed old UI

    const currentUrl = window.location.href;
    const nexusmodsUrl = "https://www.nexusmods.com/";
    const nexusmodsNewGamesUrl = nexusmodsUrl + "games/"

    if (currentUrl.startsWith(nexusmodsNewGamesUrl) && !currentUrl.includes("collections") && !currentUrl.includes("?")) {
        const gameName = currentUrl.substring(nexusmodsNewGamesUrl.length);
        // window.location.href = nexusmodsUrl + gameName;
        window.location.replace(nexusmodsUrl + gameName);
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址