First to test how the renaming will look like you can use the command with -n switch as:
rename -n 's/\.([^.]+)$/.\L$1/' *
If you are satisfied just remove “-n” and all files will have it’s extensions renamed to lowercase.
rename 's/\.([^.]+)$/.\L$1/' *