Alright, I found a solution onerob . It is far from ideal, but it does work.
It relies on custom script execution. According to Vlad this is meant to be implemented natively soon. Keep in mind this will decode every webp image on the client side.
Here the steps:
- Install https://addons.mozilla.org/en-US/android/addon/codeinjector/ in normal firefox
- Inside the add-on, create a new rule. Use whatever URL, it doesn't matter. As of today, the add-on is unable to detect the current loaded site in Orion.
- While creating the rule, go to Files. Add the following two paths and save:
https://unpkg.com/webp-hero@0.0.2/dist-cjs/polyfills.js
https://unpkg.com/webp-hero@0.0.2/dist-cjs/webp-hero.bundle.js
Open the add-on options. Export the rule. This will save a .json file.
Install the extension in Orion and import the same file.
Restart Orion
Open any website that loads webp images. Click on the extension, select the dropdown menu besides your rule and click "inject"
Nothing will happen! You still need to apply the injection. Open the console (F12) and execute the following:
var webpMachine = new webpHero.WebpMachine()
webpMachine.polyfillDocument()Webp images will start loading. Done.
Keep in mind that you will need to 1) inject the rule on every new tab and 2) execute the console commands every time new webp elements are loaded. The images will be decoded one at a time. I don't have enough time to find out how to make it work automatically. It should be possible, but extensions support is still very buggy. If you find a way, let me know.
Vlad This should not be considered a solution for the reasons stated above. I would keep this open until something more elegant is found. WebKit has support for webp since 2013 (see https://bugs.webkit.org/show_bug.cgi?id=47512) so this might actually be activated through some compilation flag?