您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
懒狗
// ==UserScript== // @name mhtall棉花糖自动下一章 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 懒狗 // @author Hanayo // @match https://learning.mhtall.com/play/player.html* // @require https://code.jquery.com/jquery-3.6.0.min.js // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... //var $ = unsafeWindow.jQuery; const video = document.getElementById("video") let now, next, nextbig //const now = document.getElementsByClassName("course-active") video.addEventListener('play', function () { //播放开始执行的函数 console.log("开始播放"); now = $(".title.course-active") next = now.parents("ul").next() nextbig = now.parents("div").next(".chapter-list").children("ul").eq(0).children("li") }); video.addEventListener('ended', function () { //结束 console.log("播放结束"); if(next.length>0){ //下一章 next.children("li").click() } else { //下一大章 nextbig.click() } }, false); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址