So in another editor, I created a macro to create a webpage for the above use. It takes the list of urls, and creates a html page for it. Let's say your file contains this (I know these aren't valid urls... it's just to demo the process):
a
b
After running the script you will get:
- Code: Select all
<html>
<head>
<title>aaa</title>
<body>
<a href="a">a</a><br>
<a href="b">b</a><br>
</body>
</html>
After this, save it as an html file, open it in firefox, right click and select "downthemall", and you can download all the files... with minimal effort. The "title" is prompted when you run the script.
Here is the script. Edit: See improved version by Mofi below.


