Nexus No Wait

Download from Nexusmods.com without wait and redirect (support Manual/Vortex/MO2/NMM)

< Rückmeldungen auf Nexus No Wait

Frage/Kommentar

§
Veröffentlicht: 06.09.2025

Hi StrangeT, just a heads-up: your script isn’t working anymore because NexusMods has started updating their download page. The update is being rolled out progressively, so some users get the new version while others still see the old one. To fix this, your script needs to support both versions at the same time.

Here’s the fix I used for my script:

// Try the new website version regex first
let downloadUrlMatch = text.match(/const downloadUrl = '([^']+)'/);

if (!downloadUrlMatch) {
    // Fallback to the old website version regex
    downloadUrlMatch = text.match(/id="slowDownloadButton".*?data-download-url="([^"]+)"/);
}
StrangeTVerfasser
§
Veröffentlicht: 09.09.2025

Thanks. In any case, this wont help with recoloring loading status button.
Ill try to fix new shadowRoot.

StrangeTVerfasser
§
Veröffentlicht: 10.09.2025

Thanks again. I posted a hotfix based on your comment. This script needs a full refactor, but I don't have time for that right now.

Antwort schreiben

Anmelden um eine Antwort zu senden.