湖南人才市场公共教育网刷课脚本

用于 湖南人才市场公共教育网 的辅助看课

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         湖南人才市场公共教育网刷课脚本
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  用于 湖南人才市场公共教育网 的辅助看课
// @author       You
// @match        https://ua.peixunyun.cn/*
// @match        https://www.hnpxw.org/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';
  setInterval(function () {
    // 当前视频完成后,下一节
    if ($('div.video-info > div.video-bottom').text().indexOf('已看完') != -1) {
      setTimeout(function () {
        // // 下一节
        $('#aiPanel > div.page-control-area > div > div.next-page-btn.cursor > div.btn-tip > span').click()
      }, 5000)
      setTimeout(function () {
        $('div.mejs__overlay.mejs__layer.mejs__overlay-play > div').click()
      }, 8000)
    }
  }, 20 * 1000)

  // 防止视频没有播放
  setInterval(function () {
    var video = document.getElementsByTagName("video")[0]
    if (video.paused && !video.ended) {
      video.play()
    }
  }, 3000)
})();