知乎Gif自动加载

try to take over the world!

  1. // ==UserScript==
  2. // @name 知乎Gif自动加载
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Cooper
  7. // @match *://*.zhihu.com/*
  8. // @grant none
  9. // @run-at document-end
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14. // Your code here...
  15. var players = document.querySelectorAll(".GifPlayer");
  16. players.forEach(function(item){
  17. item.classList.add("isPlaying");
  18. })
  19. var gifDoms = document.querySelectorAll(".column-gif");
  20. gifDoms.forEach(function(item){
  21. item.src = item.src.replace(/jpg$/g,"gif");
  22. })
  23. })();

QingJ © 2025

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