Chrome extension that automatically re-download when interrupted?

13,339

Solution 1

I found that add-on DownThemAll! on firefox could automatic retry download when interrupted. And there are options to change retry times and intervals. Thanks for your help anyway.

Solution 2

Well addition to answer by HackToHell, Have a download.sh script like below, which will retry downloading each and everytime network breaks, from where it was left previously.

#!/bin/bash

link=$1

if [ "$link" == "" ]; then
    echo "Provide valid download link";
    exit -1;
fi

while(true)
do
        wget -c $link

        retval="$?"
        if [ $retval -eq 0 ]; then
                break;
        fi
done

And call it link

$./download.sh DOWNLOAD_LINK

If you want your download to continue after you exit from shell then

$nohup ./download.sh DOWNLOAD_LINK > nohup.out &
disown 

Solution 3

Chrome's download manager really sucks and there is no way to restart the interrupted download, if you are in Linux however, you can use wget to resume downloads. just rename the file, it has .crdownload appended to it to the actual name of the file.

wget -c (URL)

Share:
13,339

Related videos on Youtube

hgajshb
Author by

hgajshb

Updated on September 18, 2022

Comments

  • hgajshb
    hgajshb over 1 year

    Is there such a thing or can any other browsers have this feature?