Greasy Fork

Greasy Fork is available in English.

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.

发布留言

登录以发布留言。