zhihu 知乎、知乎专栏 gif 自动加载

just for fun!

  1. // ==UserScript==
  2. // @name zhihu 知乎、知乎专栏 gif 自动加载
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.5
  5. // @description just for fun!
  6. // @author You
  7. // @match https://zhuanlan.zhihu.com/*
  8. // @match https://www.zhihu.com/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. function players() {
  13. let gif = document.querySelectorAll(".ztext-gif");
  14. gif.forEach((i) => {
  15. i.src = i.src.replace(/jpg/g, "webp");
  16. i.parentNode.classList.add("isPlaying");
  17. });
  18. }
  19. window.onload = players();
  20. window.onscroll = () => {
  21. players();
  22. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址