// ==UserScript== // @name chinahrt全自动刷课 // @namespace https://github.com/jsgang/chinahrt // @version 1.5 // @description chinahrt刷课,规则更改了,只能耗时间,可以把视频加入列表放置让自动切换。。 // @author jsgang yikuaibaiban https://www.jsgang.top // @icon https://www.google.com/s2/favicons?sz=64&domain=jsgang.top // @match http://*.chinahrt.com/* // @match https://*.chinahrt.com/* // @match http://videoadmin.chinahrt.com.cn/videoPlay/play* // @match http://videoadmin.chinahrt.com/videoPlay/play* // @match https://videoadmin.chinahrt.com.cn/videoPlay/play* // @match https://videoadmin.chinahrt.com/videoPlay/play* // // @grant unsafeWindow // @grant GM_setValue // @grant GM_getValue // @grant GM_addValueChangeListener // @grant GM_notification // // @license GPL // @downloadURL https://update.greasyfork.icu/scripts/475652/chinahrt%E5%85%A8%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE.user.js // @updateURL https://update.greasyfork.icu/scripts/475652/chinahrt%E5%85%A8%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE.meta.js // ==/UserScript== /** * 课程预览页面 * @type {number} */ const COURSE_PREVIEW = 0; /** * 课程播放页面 * @type {number} */ const COURSE_PALY = 1; /** * 视频播放页面 * @type {number} */ const VIDEO_PALY = 2; /** * VUE课程预览页面 * @type {number} */ const VUE_COURSE_PREVIEW = 3; /** * 未知页面 * @type {number} */ const UNKOWN_PAGE = 9999; /** * 课程存储关键字 * @type {string} */ const COURSES = "courses"; /** * 自动播放 * @type {string} */ const AUTOPLAY = "autoPlay"; /** * 静音 * @type {string} */ const MUTE = "mute"; /** * 拖动 * @type {string} */ const DRAG = "drag"; /** * 播放速度 * @type {string} */ const SPEED = "speed"; /** * 播放模式 * @type {string} */ const PLAY_MODE = "play_mode"; /** * 重复次数 * @type {string} */ const REAPT_NUM = "reapt_num"; /** * 自刷切换 * @type {string} */ const REAPT_MODE = "reapt_mode"; /** * 获取自动播放 * @returns {*} */ function getAutoPlay() { return GM_getValue(AUTOPLAY, true); } /** * 获取静音 * @returns {*} */ function getMute() { return GM_getValue(MUTE, true); } /** * 获取拖动 * @returns {*} */ function getDrag() { return GM_getValue(DRAG, 5); } /** * 获取播放速度 * @returns {*} */ function getSpeed() { return GM_getValue(SPEED, 1); } /** * 获取播放列表 * @returns {*|*[]} */ function getCourses() { var value = GM_getValue(COURSES, []); if (Array.isArray(value)) { return value; } return []; } /** * 添加到播放列表 * @param element * @returns {boolean} */ function addCourse(element) { if (!element.title || !element.url) { console.error(element); alert("添加失败,缺少必要参数"); return false; } var oldValue = getCourses(); if (oldValue.findIndex(value => value.url == element.url) > -1) { alert("已经存在播放列表中"); return false; } oldValue.push({title: element.title, url: element.url}); GM_setValue(COURSES, oldValue); return true; } /** * 从播放列表移除 * @param index */ function removeCourse(index) { var courses = getCourses(); if (Number.isNaN(index)) { for (let i = courses.length; i >= 0; i--) { const element = courses[i]; // 正则提取 href 中 sectionId courseId trainplanId var jsonHref = element.url; var jsonSectionId = jsonHref.match(/sectionId=([^&]*)/)[1]; var jsonCourseId = jsonHref.match(/courseId=([^&]*)/)[1]; var jsonTrainplanId = jsonHref.match(/trainplanId=([^&]*)/)[1]; // 正则提取 window.location.href 中 sectionId courseId trainplanId var href = window.location.href; var sectionId = href.match(/sectionId=([^&]*)/)[1]; var courseId = href.match(/courseId=([^&]*)/)[1]; var trainplanId = href.match(/trainplanId=([^&]*)/)[1]; if (jsonCourseId == courseId && jsonSectionId == sectionId && jsonTrainplanId == trainplanId) { courses.splice(i, 1); } } } else { courses.splice(index, 1); } GM_setValue(COURSES, courses); } /** * 生成可以添加到播放列表的容器 * @returns {*|jQuery|HTMLElement} */ function createCanPlayList() { // 生成容器 var playListBox = $("
", { id: "canPlayBox", css: { width: "300px", height: "500px", position: "fixed", top: "100px", background: "rgba(255,255,255,1)", right: "20px", border: "1px solid #c1c1c1" } }); var status = $("
", { text: "获取中...", css: { height: "30px", "border-bottom": "1px solid", "text-align": "center", "line-height": "30px", "color": "#4bccf2", "font-weight": "bold" }, click: function () { playListBox.trigger("clear"); if (getPageNumber() == VUE_COURSE_PREVIEW) { vue_findCourses(playListBox); } else { findCourses(playListBox); } } }); status.appendTo(playListBox); var listBox = $("
", { css: { height: "470px", "overflow-y": "auto" } }).appendTo(playListBox); playListBox.on("clear", function () { status.text("获取中..."); listBox.empty(); }); // 添加绑定事件 playListBox.on("bind", function (e, data) { if (status.text() == "获取中...") { status.text("点击刷新"); } var box = $("
", { css: { "border-bottom": "1px solid #c1c1c1", "padding": "8px", "line-height": "150%", "border-bottom": "1px solid #c1c1c1", "margin-bottom": "3px" } }); var ptitle = $("

", { text: data.title, title: data.title, css: { "font-size": "13px", "white-space": "nowrap", "overflow": "hidden", "text-overflow": "ellipsis", } }); ptitle.appendTo(box); var pstatus = $("

", { text: "学习状态: " + data.status, title: "学习状态: " + data.status, css: { "font-size": "12px", "white-space": "nowrap", "overflow": "hidden", "text-overflow": "ellipsis", "color": "#c1c1c1" } }); pstatus.appendTo(box); var disabled = getCourses().findIndex(value => value.url == data.url) > -1; var button = $("