DaxuexiTerminator 青年大学习终结者[2023-4 Update]

直接跳过青年大学习的视频

// ==UserScript==
// @name         DaxuexiTerminator 青年大学习终结者[2023-4 Update]
// @namespace    https://minecreeper.top/
// @version      0.1
// @description  直接跳过青年大学习的视频
// @author       MineCreeper-矿井小帕
// @match        *://h5.cyol.com/special/daxuexi/*
// @grant        none
// @run-at       document-idle
// @license      GPLv3
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector(".rightTop").appendChild(document.createElement("div"))
    var k = document.querySelector(".rightTop").children[4]
    k.className = "line3"
    k.innerHTML = "<b>进入</b>视频<b>播放</b>后,即可<b>自动</b>跳过视频"
    var id = setInterval(function(){
        var finish = false;
        if(document.querySelector("iframe").contentWindow.document.querySelector(".txp_videos_container > video")!=undefined && !finish) {
            if(document.querySelector("iframe").contentWindow.document.querySelector(".txp_videos_container > video").currentTime > 1 && document.querySelector("iframe").contentWindow.document.querySelector(".txp_videos_container > video").currentTime < 10) {
                document.querySelector("iframe").contentWindow.document.querySelector(".txp_videos_container > video").currentTime = 1000;
                document.querySelector(".rightTop").removeChild(k);
            }
        }
    },100)
})();