您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Pluralsight Continuous Play
// ==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);