职业培训自动播放

厦门市职业技能培训总站自动播放下一个视频

目前为 2020-04-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         职业培训自动播放
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  厦门市职业技能培训总站自动播放下一个视频
// @author       mouc
// @include      /http?:\/\/xmaqsc\.zyk\.yxlearning\.com\/learning/.*
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @run-at       document-idle
// @license      MIT License
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const delay = 10000;//重试间隔
    let play = ()=>{
       $('.polyvFlashObject')[0].j2s_resumeVideo();
    };

    //每隔10秒恢复播放
    setInterval(() => {
        if( $('.polyvFlashObject').length === 1 ){
            //console.warn("检测到播放器, 正在重试恢复播放...")
            play();
        }else{
            console.error("没有检测到播放器, " + delay + "毫秒后重试...");
        }
    }, delay);

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