Greasy Fork is available in English.

Nexus Fast Slow DL

Autostarts the slow download, removed the timer from manually clicking

// ==UserScript==
// @name        Nexus Fast Slow DL
// @description Autostarts the slow download, removed the timer from manually clicking
// @namespace   NexusFastSlow
// @include     https://www.nexusmods.com/*/mods/*?tab=files&file_id=*
// @grant       none
// @run-at      document-idle
// @version     2
// ==/UserScript==



(function () {
    var slow = $('#slowDownloadButton');
    var downloadUrl = slow.data('download-url');

    slow.text('Click to restart slow download');
    slow.off().click(function () {
        window.location.href = downloadUrl;
        $('.donation-wrapper > p').html('Your <span class="timer">slow</span> download was started manually.');
    });
    
    $('#fastDownloadButton, .subheader, .table thead, .table tbody').hide();

    $('.donation-wrapper').show();
    $('.donation-wrapper > p').html('Your <span class="timer">slow</span> download was started automatically.');

    window.location.href = downloadUrl;
})();