Just a side note, ShortPixel used to have a bug that caused orphan WEBP files when using a double extension. ( image.jpg.webp )
I don’t remember if this was fixed, but it’s something you should be aware of if you decide to use them.
Also, keep in mind that WEBP files are generated from their corresponding thumbnails, not from the original uploaded image. (and by default, thumbnails are generated at 82% quality)
This means your WEBP images are generated using double compression.
(Unsolicited advice you might find useful)
If you decide to use WebP Express and you have enough server space, you can prevent this double compression by using the steps below:
1. Set JPG thumbnail quality to 100%
2. Tweak WEBP quality to your desired level via WebP Express
3. Regenerate all thumbnails, without skipping existing thumbnails (preferably via WP-CLI, which is much faster and not prone to PHP timeouts)
This way, your WEBP files will always be generated from high-quality sources, and you will have full control over the final size and quality of your WEBP files. (via the quality settings of WebP Express)
Since WEBP is now supported by 96% of all browsers in use, your original PNG/JPG images will (probably) never be seen by your visitors. They will only serve as high-quality sources for generating optimized WEBP files.
The only downside to this is that you will use slightly more server space.
You can change the quality of your thumbnails with the code snippet below:
https://pastebin.com/wmEfzDWu