Automatically convert .webp to .png, .jpg on download
This requires ffmpeg to be installed and set as an enviroment variable After you install the newest release find a webp file on your pc and open it with the exe.
check "Always use this app to open .webp files"In your web browser set the file type to automatically open
*This is in chrome, it may be different in your web browser
Or you can just run this in administrative mode
assoc .webp=webpfile
ftype webpfile="ABSOLUTE_PATH_TO_EXE" "%1"
And then in your browser set the file type to automatically open
webp-convert-comp.mp4
*The console is hidden by default
{
"remove-on-completion": false,
"open-on-completion": true
"hideconsole": true,
"output-format": "png"
}
remove-on-completion - Remove webp file after completion
open-on-completion - Open output file with default image viewer
hideconsole - Don't show a console when converting a file
output-format - Conversion output file format (Should support anything ffmpeg supports)