Greasy Fork is available in English.
妇幼营养与健康在线培训及考核里面培训视频的倍速播放
// ==UserScript==// @name 妇幼营养与健康在线培训及考核倍速播放// @namespace http://tampermonkey.net/// @version 2024-11-26// @description 妇幼营养与健康在线培训及考核里面培训视频的倍速播放// @author You// @match https://mchtracourse.#####wch.org.cn/videoPlay/play?*// @icon https://www.google.com/s2/favicons?sz=64&domain=#####wch.org.cn// @grant none// ==/UserScript==(function() {'use strict';$(document).ready(() => {setTimeout(() => {const $ = window.$;const __PLAYER__ = document.querySelector(`#${$('video')[0].id}`);// 设置初始播放速度为 16__PLAYER__.playbackRate = 16;const customInterval = setInterval("courseyunRecord()", 3000);// 监听视频播放进度__PLAYER__.addEventListener('timeupdate', function () {// 防止视频暂停__PLAYER__.play();const currentTime = __PLAYER__.currentTime; // 当前播放时间const duration = __PLAYER__.duration; // 视频总时长// 如果剩余时间小于 10 秒,恢复正常播放速度if (duration - currentTime <= 15) {__PLAYER__.playbackRate = 1; // 恢复正常速度// 取消轮询clearInterval(customInterval);courseyunRecord();}});}, 3000);});})();