Nexus No Wait

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

< Feedback on Nexus No Wait

Câu hỏi/Bình luận

§
Posted: 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="([^"]+)"/);
}
StrangeTTác giả
§
Posted: 09-09-2025

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

StrangeTTác giả
§
Posted: 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.

Post reply

Đăng nhập để bình luận