31

I need a program that I can give a lit of URLs to (either paste or in a file) like below and then it must be able to crawl those links and save files of a certain type, like images for example. I have tried a few spiders but not had luck.

Currently, the only way to download everything, is to open each link, then I use the "DownThemAll!" Firefox plugin which selects all the images (or any file type) on the page and downloads them. This works page by page, but I need something similar that works a whole list of URLs.

Does anyone have any suggestions?? Thanks a lot.

PS. Could I also add that it be something fairly easy to use that has a half decent user interface and doesn't run from the command line. Thanks

   http://www.someUrl.com/fhg/xbox/1/index.php?ccbill=123456    
   http://www.someUrl.com/fhg/allison_gf/1/index.php?ccbill=123456    
   http://www.someUrl.com/fhg/cookin/1/index.php?ccbill=123456    
   http://www.someUrl.com/fhg/blackjacket/1/index.php?ccbill=123456  
Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400
Cheeky
  • 319

3 Answers3

44

There's not been any way of doing this from a browser or without downloading dodgy one-hit wonder freeware so I've written a Chrome browser extension that fits the bill.

It's called TabSave, available in the webstore here.

You can paste in a list of URLs and it'll download them, no fuss :-)

It also has the ability to download every tab open in the active window, hence the name. This is the default, just click the edit button to insert a list yourself.

It's all open source, the GitHub repo is linked in the webstore description if you want to send a pull request (or suggest a feature).

14

For your needs, Chrono Download Manager or TabSave can download a list of links quickly. Both are Chrome extensions, so no need to download desktop software.


And maybe this could be useful for you:

In my own experience, I prefer Chrono Download Manager because I needed to change automatically the name of the downloaded file in a BATCH-way (a list of VIDEOS from a hmm hmm... online courses) and crawling in the html code all the different videos have the same filename. So downloading it with TabSave just gives you the same name videos and you have to guess wich is the content (somewhat like "543543.mp4", "543543(1).mp4", "543543(2).mp4" and so and so).Imagine how much extra work you need to do to achieve this kind of task.

If you need quick list download of files as-is, go TabSave. If you need start to need change the name files on the run, go Chrono.

3

I know I'm gravedigging here, but I was searching for a similar program and found BitComet which works really well, you can import url's from textfiles etc.

ertan
  • 31