Greasy Fork is available in English.
just for fun!
// ==UserScript== // @name zhihu 知乎、知乎专栏 gif 自动加载 // @namespace http://tampermonkey.net/ // @version 0.5 // @description just for fun! // @author You // @match https://zhuanlan.zhihu.com/* // @match https://www.zhihu.com/* // @grant none // ==/UserScript== function players() { let gif = document.querySelectorAll(".ztext-gif"); gif.forEach((i) => { i.src = i.src.replace(/jpg/g, "webp"); i.parentNode.classList.add("isPlaying"); }); } window.onload = players(); window.onscroll = () => { players(); };