// ==UserScript== // @name nyaa.si - Batch Download // @description Allows batch download of all displayed results in one single click. // @version 2023.03.16.23.02 // @author MetalTxus // @namespace https://github.com/jesuscc1993 // @grant GM_xmlhttpRequest // @icon https://avatars3.githubusercontent.com/u/28658394?s=44 // @match https://nyaa.si/* // @require https://code.jquery.com/jquery-3.2.1.min.js // @downloadURL https://update.greasyfork.icu/scripts/30047/nyaasi%20-%20Batch%20Download.user.js // @updateURL https://update.greasyfork.icu/scripts/30047/nyaasi%20-%20Batch%20Download.meta.js // ==/UserScript== /* globals jQuery */ (() => { 'use strict'; const delayBetweenDownloads = 150; let downloadButton; let magnets; const appendBatchDownloadButton = () => { magnets = jQuery(magnetsSelector); const fileCount = magnets.length; if (fileCount) { downloadButton = jQuery(` Download all (${fileCount}) `); downloadButton.click((event) => { event.preventDefault(); downloadAll(); }); setButtonText(); jQuery('.torrent-list').append(downloadButton); downloadButton .wrap(`