Open the command prompt
Change to the directory with the files
Assuming that you're using bash by default, do this:
for file in ./* ; do mv ${file} ${file}.jpg; done
If you're not using bash, just type "bash" before the above command.
Everything in that directory will get a .jpg extension. If you have mixed PNG and JPG, you may want a fancier solution.