您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
跳过视频内试题,1.5倍加速 自动下一章
// ==UserScript== // @name 新版智慧树挂机20180412 // @description 跳过视频内试题,1.5倍加速 自动下一章 // @namespace http://tampermonkey.net/ // @version 1.1 // @author simpsonlau // @match *://study.zhihuishu.com/learning/videoList;jsessionid* // @match *://study.zhihuishu.com/learning/videoList?courseId* // @match *://course.zhihuishu.com/learning/videoList?courseId* // @match *://course.zhihuishu.com/learning/videoList;jsessionid* // @grant none // ==/UserScript== function query() { if ($("#popbox_title").length > 0) { $(".popboxes_close")[0].click(); console.log('关闭窗口'); } if ($("#chapterList .time_ico.fl").nextAll()[2].children[0].style.width === "100%" || $("video").get(0).ended) { var num = -1; var text = $("#chapterList .time_ico.fl").parent().nextAll()[++num].id; while (text === "" || text.substr(0, 5) != "video" || text.substr(0, 7) === "video-0") { text = $("#chapterList .time_ico.fl").parent().nextAll()[++num].id; } $("#chapterList .time_ico.fl").parent().nextAll()[num].click(); } if ($("video").length > 0 && $("video").get(0).playbackRate != 1.5) { console.log('切换到1.5倍'); $(".speedTab15")[0].click(); } if ($("video").get(0).volume > 0) { $(".volumeIcon").click(); } } window.setInterval(query, 1000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址