取消西瓜影视自动播放下一集

try to take over the world!

  1. // ==UserScript==
  2. // @name 取消西瓜影视自动播放下一集
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Cesaryuan
  7. // @match https://www.ixigua.com/*
  8. // @icon https://www.google.com/s2/favicons?domain=ixigua.com
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var timer = setInterval(() => {
  15. let temp1 = document.querySelector('#player_default video');
  16. if(temp1)
  17. {
  18. clearInterval(timer);
  19. setInterval(() => {
  20. if(!temp1.paused && temp1.duration > 2 && temp1.currentTime > temp1.duration - 2){
  21. var msg = temp1.currentTime + ':' + temp1.duration;
  22. // window.alert(msg);
  23. // console.error(msg);
  24. // document.body.innerText = msg;
  25. temp1.pause();
  26. }
  27. }, 1000)
  28. }
  29. }, 1000)
  30.  
  31.  
  32. // Your code here...
  33. })();

QingJ © 2025

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