Greasy Fork

Old nexusmods Games UI

18.03.2025, 16:15:36

当前为 2025-03-18 提交的版本,查看 最新版本

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

(function() {
    'use strict';

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

    if (currentUrl.startsWith(nexusmodsNewGamesUrl)) {
        const gameName = currentUrl.substring(nexusmodsNewGamesUrl.length);
        // window.location.href = nexusmodsUrl + gameName;
        window.location.replace(nexusmodsUrl + gameName);
    }
})();