toggle webp / jpg extension

Discuss and share scripts and script files...
Post Reply
admin
Site Admin
Posts: 60531
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

toggle webp / jpg extension

Post by admin »

I often download images in WEBP format but my browser saves them as *.JPG. Or vice versa. Here is a small script that toggles these extensions for the current file.

Code: Select all

if (gpc(,"ext")=="webp") {renameitem("*.jpg")} elseif (gpc(,"ext")=="jpg") {renameitem("*.webp")};

Post Reply