Nexus No Wait

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

< 腳本Nexus No Wait的回應

提問/評論

§
發表於:2025-09-06

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="([^"]+)"/);
}
StrangeT作者
§
發表於:2025-09-09

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

StrangeT作者
§
發表於:2025-09-10

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.

發表回覆

登入以回覆