Extreme URL Generator 2.0
Download
5.7 MB

Extreme URL Generator 2.0

Extreme URL Generator is an easy way to generate and save a list of similar URLs
3 
Rating
Your vote:
Latest version:
2.0.2 See all
Screenshots
1 / 7
Awards (7)
Show all awards
Software Informer Editor Rating 4
Download
5.7 MB

Extreme URL Generator is a very small application. It can be used to generate URLs based on a particular sequence.
For example, if we need to 100 files from website and the URLs are in the order
http://www.site.com/gallery/img000.jpg
http://www.site.com/gallery/img001.jpg
http://www.site.com/gallery/img002.jpg ...........

Then we can use this application to generate the names. You can specify the URL syntax

http://www.site.com/gallery/img[1].jpg

and the range from 0 to 10 with step 1 (or the number added), number of digits 3.

There is a "varying number" which we can enable. Any number of this term can be specified. What it does is that it will iterate the urls.

For example,

http://www.site.com/gallery/img[1][2].jpg
With the usual numbering "1" as 1, 2, 3 and another varying number "2" as 1,2,3 will generate

http://www.site.com/gallery/img001001.jpg
http://www.site.com/gallery/img001002.jpg
http://www.site.com/gallery/img001003.jpg
http://www.site.com/gallery/img002002.jpg
http://www.site.com/gallery/img002002.jpg .......................

I have no idea why would anyone buy this program for 14.95$. The same data can easily be generated by a simple iterative command in VB Script or Java Script or in the "command prompt" in windows.

For example, try the JavaScript code

//______________START_________________________________
var fso, f1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f1 = fso.CreateTextFile("URLs.txt", true);

var i,j;
for (i=0;i<5;i++) {
f1.write ("http://www.site.com/gallery/img00" + i + ".jpg\n");
}
f1.close();
//______________END___________________________________

copy this into a file with "JS" extension and run it directly or by "wscript.exe" from command line. More looping parts can be added inside each of them to create the second type of sequence.

ZM Senior editor
Zack Martin
Editor rating:
rating

Review summary

Pros

  • Small program
  • Can save to text file!

Cons

  • High Price (Not a freeeare)
  • Less features
  • Need another program to download the urls

Comments

3
Rating
1 vote
5 stars
0
4 stars
0
3 stars
1
2 stars
0
1 stars
0
User

Your vote: