For a quick fix: `font-variant-ligatures: none;` on body or similar.
For users: paste the following in console
document.body.style.setProperty('font-variant-ligatures','none','important');
I have this as !important in a global userStyle for code, pre, kbd, samp elements.
For users: paste the following in console