Pluralsight Continuous Play Next module

Pluralsight Continuous Play

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name       Pluralsight Continuous Play Next module
// @namespace  http://www.goldtect.com/
// @version    0.1
// @require      https://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @description  Pluralsight Continuous Play
// @match      https://app.pluralsight.com/course-player*
// @copyright  2019, Hulk.Yang
// @include https://app.pluralsight.com/course-player*
// ==/UserScript==


console.log('[start]Pluralsight Continuous Play');

window.setInterval(function(){
    //angular.element($0).scope().setPlaybackSpeed(3);
    //console.log('checking...');
    function clickNextModule(){
        var nextButton = $('button:contains("Continue to next module")')
        if (nextButton && !nextButton.is(':hidden')) {
            nextButton.click();
        }else{
            console.log("not found next module button");
        }
    }
    clickNextModule()
},5000);