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

try to take over the world!

// ==UserScript==
// @name         取消西瓜影视自动播放下一集
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Cesaryuan
// @match        https://www.ixigua.com/*
// @icon         https://www.google.com/s2/favicons?domain=ixigua.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
var timer = setInterval(() => {
    let temp1 = document.querySelector('#player_default video');
    if(temp1)
    {
        clearInterval(timer);
        setInterval(() => {
            if(!temp1.paused && temp1.duration > 2 && temp1.currentTime > temp1.duration - 2){
                var msg = temp1.currentTime + ':' + temp1.duration;
                // window.alert(msg);
                // console.error(msg);
                // document.body.innerText = msg;
                temp1.pause();
            }
        }, 1000)
    }
}, 1000)


    // Your code here...
})();