If comfortable with Terminal, command line, and can decipher URLs, this will work.
Code:
cd ~/Downloads
curl -O url_to_file_to_download
For example, to download the MacRumors logo from the top of the page:
Code:
curl -O 'https://cdn.macrumors.com/images-new/logo.png'
Just put the commands into a text file and then can do from command line: source my_text_file_of_commands
Or type it out manually on the command line: hit enter, enter the next, and will build a queue.
Oh and: make sure you put the URL within quotes, otherwise might get some odd behavior.