您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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; })();