View Single Post
  #2066  
Old 29.12.2021, 08:51
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,545
Default

Quote:
Originally Posted by maxpower420 View Post
... Maybe if there is a way to pause it or skip to the next file to download ...
Code:
/*
    Skip/Unskip link
    Trigger : Interval 
    Recommended Interval : 60000+
*/

var exclude = ["zippyshare.com"];
var skipped = [];

getRunningDownloadLinks().forEach(function(link) {
    if (
        exclude.indexOf(link.host) == -1 &&
        link.downloadDuration > 60000 &&
        link.speed < 1024 * 128
    ) {
        link.skipped = true;
        skipped.push(link);
    }
})

sleep(1000);

skipped.forEach(function(link) {
    link.skipped = false;
})
Reply With Quote