Greasy Fork is available in English.
Download from Nexusmods.com without wait and redirect (support Manual/Vortex/MO2/NMM)
< Rückmeldungen auf Nexus No Wait
Fix for mod requirement downloads
For example: https://www.nexusmods.com/skyrimspecialedition/mods/31300?tab=files
I've marked the lines changed with // <--
// <--
var href = this.href; // <-- if (href.indexOf("file_id") >= 0 || href.indexOf("ModRequirementsPopUp") >= 0) { // <-- event.preventDefault(); var button = $(this); button.css("color", "yellow"); button.text('WAIT'); var game_id = document.getElementById("section").dataset.gameId; var search_params = new URL(href).searchParams; // <-- var file_id = search_params.get("file_id"); if (!file_id) // <-- file_id = search_params.get("id"); // <--
Anmelden um eine Antwort zu senden.
Fix for mod requirement downloads
For example: https://www.nexusmods.com/skyrimspecialedition/mods/31300?tab=files
I've marked the lines changed with
// <--