jp2468显示当前集数

在www.jp2468.com显示当前集数

  1. // ==UserScript==
  2. // @name jp2468显示当前集数
  3. // @namespace gqqnbig.me
  4. // @version 0.1
  5. // @description 在www.jp2468.com显示当前集数
  6. // @author gqqnbig
  7. // @match http://www.jp2468.com/play/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. let currentEpisode=document.querySelector(".player_playlist .active a.active");
  14. if(currentEpisode)
  15. {
  16. if(currentEpisode.scrollIntoViewIfNeeded)
  17. currentEpisode.scrollIntoViewIfNeeded();
  18. else
  19. {
  20. currentEpisode.scrollIntoView();
  21. window.scrollTo(0,0);
  22. }
  23. }
  24. })();

QingJ © 2025

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