自动播放下一节视频,解放你的双手
// ==UserScript==
// @name 慕课网自动播放下一节Plus版
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 自动播放下一节视频,解放你的双手
// @author Lionxxw
// @match *://*.imooc.com/*
// @icon https://www.imooc.com/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var loop = setInterval(function () {
var nextMask = document.getElementById('next-mask')
if (nextMask.className === 'next-mask in'){
var next = document.getElementsByClassName('next-btn js-next-media')
if (next != null && next != undefined){
next[0].click()
}
}
}, 1000);
})();