慕课网自动播放下一节Plus版

自动播放下一节视频,解放你的双手

// ==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);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址