hnzxxjsfzw

storehouse

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/496250/1384123/hnzxxjsfzw.js

  1. (function() {
  2. 'use strict';
  3. /* globals jQuery, $, waitForKeyElements */
  4.  
  5. unsafeWindow.GM_setValue = GM_setValue
  6. unsafeWindow.GM_getValue = GM_getValue
  7. unsafeWindow.GM_xmlhttpRequest = GM_xmlhttpRequest
  8. unsafeWindow.GM_deleteValue = GM_deleteValue
  9.  
  10. // 创建一个新的 script 标签
  11. var script = document.createElement('script');
  12. script.textContent = 'window.alert = function(){};';
  13.  
  14. // 将 script 标签插入到页面的 head 中
  15. document.head.appendChild(script);
  16.  
  17. // 检查当前窗口是否为顶层窗口
  18. if (window.self !== window.top) {
  19. return; // 如果不是顶层窗口,则不执行脚本
  20. }
  21.  
  22. var ddds3 = null;
  23. var addMessage = null;
  24.  
  25. let btn1=GM_registerMenuCommand ("\u4f5c\u8005\uff1a\ud83c\udf49\u897f\u74dc\u8981\u5927\u7684\ud83c\udf49", function(){
  26. confirm("Hello,\u611f\u8c22\u4f7f\u7528\ud83c\udf49\u897f\u74dc\u5237\u8bfe\u52a9\u624b\ud83c\udf49\uff01\u591a\u591a\u53cd\u9988\u54e6");
  27. GM_unregisterMenuCommand(btn1);
  28. }, "");
  29. let btn2=GM_registerMenuCommand ("\u4ed8\u8d39\u5185\u5bb9", function(){
  30. alert("\u9650\u65f6\u514d\u8d39\uff0c\u5168\u529b\u5f00\u53d1\u4e2d...");
  31. }, "p");
  32.  
  33. var chapterCount = 0;
  34. var chapterId = 0;
  35. var sectionCount = 0;
  36. var sectionId = 0;
  37. var studyTime = 0;
  38. var totalTime = 0;
  39. var elementsArray = 0;
  40. var timeStr = null;
  41. var search = null;
  42. var searchVD = null;
  43. var searchFC = null;
  44. var coursIndex = 0;
  45. var allCours = 0;
  46.  
  47. var nowUrl = "";
  48. /**
  49. * 请求地址
  50. * @type {string}
  51. */
  52. var href = 'https://learning.mhtall.com/rest/user/course/lesson/onexit?';
  53. /**
  54. * 获取cookie
  55. * @returns {*}
  56. */
  57. function getCookie(){
  58. return document.cookie;
  59. }
  60. /**
  61. * 获取course_id
  62. * @returns {*}
  63. */
  64. function courseId(url){
  65. const queryString = url.split('?')[1];
  66. const urlParams = new URLSearchParams(queryString);
  67. const course_id = urlParams.get('course_id');
  68. return course_id;
  69. }
  70. /**
  71. * 获取course_uuid
  72. * @returns {*}
  73. */
  74. function courseUuid(url){
  75. const queryString = url.split('?')[1];
  76. const urlParams = new URLSearchParams(queryString);
  77. const course_uuid = urlParams.get('course_uuid');
  78. return course_uuid;
  79. }
  80. /**
  81. * 获取course_code
  82. * @returns {*}
  83. */
  84. function courseCode(url){
  85. const queryString = url.split('?')[1];
  86. const urlParams = new URLSearchParams(queryString);
  87. const course_code = urlParams.get('course_code');
  88. return course_code;
  89. }
  90. /**
  91. * 获取lesson_id
  92. * @returns {*}
  93. */
  94. function lessonId(){
  95. return document.getElementsByClassName("chapter-course js-chapter-course")[sectionId-1].children[0].getAttribute("lesson-id");
  96. }
  97. /**
  98. * 获取video_position
  99. * @returns {*}
  100. */
  101. function videoPosition(){
  102. return document.getElementsByClassName("chapter-course js-chapter-course")[sectionId-1].children[0].getAttribute("video-position");
  103. }
  104. /**
  105. * 获取video_duration
  106. * @returns {*}
  107. */
  108. function getVdDuration(){
  109. timeStr = document.getElementsByClassName("course-list-header")[sectionId-1].getElementsByClassName("tt-suffix js-tt-suffix")[0].innerText;
  110. let a = timeStr.substring(7,9)
  111. let b = timeStr.substring(10,12)
  112. var videoDuration = (parseInt(a)*60) + parseInt(b)
  113. return videoDuration;
  114. }
  115.  
  116. function saveHomeUrl(){
  117. let homeUrl = window.location.href;
  118. GM_setValue('homeUrl',homeUrl);
  119. }
  120.  
  121. function getHomeUrl(){
  122. return GM_getValue('homeUrl');
  123. }
  124.  
  125. function saveChapterUrl(){
  126. let chapterUrl = window.location.href;
  127. GM_setValue('chapterUrl',chapterUrl);
  128. }
  129.  
  130. function getChapterUrl(){
  131. return GM_getValue('chapterUrl');
  132. }
  133.  
  134. function searchCours(){
  135. if(chapterId < chapterCount){
  136. sectionCount = document.querySelector("#courseList").children[chapterId].getElementsByTagName('li').length;
  137. if(sectionId < sectionCount){
  138. let contentStr = document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[0].innerText;
  139. if(contentStr != '该章节暂无课程信息,请返回课程列表选课或刷新后重试。请点击刷新!'){
  140. let fenzi = parseInt(document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[sectionId].children[1].children[0].innerText);
  141. let fenmu = parseInt(document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[sectionId].children[1].innerText.split('/')[1]);
  142. if(fenzi < fenmu){
  143. setTimeout(function(){
  144. addMessage("学习"+(chapterId+1)+"章"+(sectionId+1)+"节");
  145. addMessage("10S后关闭此页");
  146. document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[sectionId].children[0].click();
  147. setTimeout(function(){
  148. window.close();
  149. },1000 * 10);
  150. },1500);
  151. }else{
  152. sectionId++;
  153. searchCours();
  154. }
  155. }
  156. else{
  157. sectionId = 0;
  158. chapterId++;
  159. searchCours();
  160. }
  161. }else{
  162. sectionId = 0;
  163. chapterId++;
  164. searchCours();
  165. }
  166. }else{
  167.  
  168. }
  169. }
  170.  
  171. search = function(){
  172. if(tempTime >= 800){
  173. addMessage("课程完成"+tempTime+"/800,10秒后回主页");
  174. setTimeout(function(){
  175. window.open(getHomeUrl(),'_self');
  176. },10000);
  177. return;
  178. }
  179. if(chapterId < chapterCount){
  180. sectionCount = document.querySelector("#courseList").children[chapterId].getElementsByTagName('li').length;
  181. searchSection();
  182. }else{
  183. if(tempTime < 800){
  184. addMessage(tempTime+"/800");
  185. addMessage("课程进度未达标,检索未完成章节");
  186. chapterId = 0;
  187. sectionId = 0;
  188. searchCours();
  189. return;
  190. }
  191. else{
  192. addMessage("课程完成"+tempTime+"/800,10秒后回主页");
  193. setTimeout(function(){
  194. window.open(getHomeUrl(), "_self");
  195. },10000);
  196. }
  197. }
  198. }
  199.  
  200. function searchSection(){
  201. if(sectionId < sectionCount){
  202. let contentStr = document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[0].innerText;
  203. if(contentStr != '该章节暂无课程信息,请返回课程列表选课或刷新后重试。请点击刷新!'){
  204. let fenzi = parseInt(document.querySelector("#courseList").children[chapterId].getElementsByTagName('li')[sectionId].children[1].children[0].innerText);
  205.  
  206. tempTime = tempTime + fenzi;
  207. sectionId++;
  208. search();
  209. }
  210. else{
  211. sectionId = 0;
  212. chapterId++;
  213. search();
  214. }
  215. }else{
  216. sectionId = 0;
  217. chapterId++;
  218. search();
  219. }
  220. }
  221.  
  222. var elements = null;
  223. searchVD = function(){
  224. elements = document.getElementsByClassName("title course-title js-course-title");
  225. nowUrl = window.location.href;
  226. elementsArray = Array.from(elements);
  227. for(let i=0; i<elementsArray.length; i++){
  228. if(elementsArray[i].className === "title course-title js-course-title course-active"){
  229. sectionId = i + 1;
  230. break;
  231. }
  232. }
  233. if(sectionId <= elementsArray.length){
  234. addMessage("\u5f53\u524d\u64ad\u653e\u7b2c"+sectionId+"\u4e2a\u89c6\u9891\u3002");
  235. document.getElementsByTagName("video")[0].volume = 0;
  236. document.getElementsByTagName("video")[0].play();
  237. let timeStr0 = document.getElementsByClassName("course-list-header")[sectionId-1].getElementsByClassName("tt-suffix js-tt-suffix")[0].innerText
  238. var searchJD = setInterval(function(){
  239. timeStr = document.getElementsByClassName("course-list-header")[sectionId-1].getElementsByClassName("tt-suffix js-tt-suffix")[0].innerText;
  240. if(parseInt(timeStr.substring(1,3)) >= parseInt(timeStr0.substring(7,9))){
  241. if(parseInt(timeStr.substring(4,6)) >= parseInt(timeStr0.substring(10,12))){
  242. addMessage("\u7b2c"+sectionId+"\u4e2a\u89c6\u9891\u64ad\u653e\u5b8c\u6210\u3002");
  243. if(sectionId == elementsArray.length){
  244. ddds3.children().remove();
  245. addMessage("\u5f53\u524d\u79d1\u76ee\u5df2\u5b8c\u524d\u5f80\u4e0b\u4e00\u79d1\uff01");
  246. clearInterval(searchJD);
  247. // window.open("https://se.mhtall.com/cuggw/rs/index", "_blank");
  248. window.open(getHomeUrl(), "_blank");
  249. }else{
  250. setTimeout(function(){
  251. document.getElementsByClassName("course-list-header")[sectionId].click();
  252. clearInterval(searchJD);
  253. setTimeout(function(){
  254. searchVD();
  255. },800);
  256. },100);
  257. }
  258. }else{
  259. addMessage("\u7b2c"+sectionId+"\u4e2a\u5373\u5c06\u5b8c\u6210\uff0c\u8bf7\u7a0d\u540e...");
  260. }
  261. }else{
  262. // addMessage("\u7b2c"+sectionId+"\u4e2a\u89c6\u9891\u5b66\u4e60\u4e2d\uff0c\u8bf7\u7b49\u5f85\u3002");
  263. try{
  264. GM_xmlhttpRequest({
  265. url: href+"course_id="+courseId(nowUrl)+"&course_uuid="+courseUuid(nowUrl)+"&course_code="+courseCode(nowUrl)+"&client_type=99&lesson_id="+lessonId()+"&finish_len=11&video_position="+videoPosition()+"&video_duration="+getVdDuration(),
  266. method: "GET",
  267. Cookie: getCookie(),
  268. onload: function(response) {
  269. // addMessage("response"+response.responseText);
  270. }
  271. })
  272. }
  273. catch(e){
  274. addMessage(e+"异常退出");
  275. }
  276. }
  277. },168);
  278. }else{
  279. ddds3.children().remove();
  280. addMessage("\u5f53\u524d\u79d1\u76ee\u5df2\u5b8c\u524d\u5f80\u4e0b\u4e00\u79d1\uff01");
  281. clearInterval(searchJD);
  282. // window.open("https://se.mhtall.com/cuggw/rs/index", "_blank");
  283. window.open(getHomeUrl(), "_blank");
  284. }
  285. }
  286.  
  287. const panel = function(){
  288. var container = $('<div id="gm-interface"></div>');
  289. var titleBar = $('<div id="gm-title-bar">\ud83c\udf49\u897f\u74dc\u7f51\u8bfe\u52a9\u624b\ud83c\udf49</div>');
  290. var minimizeButton = $('<div title="\u6536\u8d77" style="display:black"><svg id="gm-minimize-button" class="bi bi-dash-square" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M14 1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/><path fill-rule="evenodd" d="M3.5 8a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.5-.5z"/></svg></div>');
  291. var maxButton = $('<div title="\u5c55\u5f00" style="display:none"><svg id="gm-minimize-button" class="bi bi-plus-square" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M8 3.5a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5H4a.5.5 0 0 1 0-1h3.5V4a.5.5 0 0 1 .5-.5z"/><path fill-rule="evenodd" d="M7.5 8a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 0 1H8.5V12a.5.5 0 0 1-1 0V8z"/><path fill-rule="evenodd" d="M14 1H2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"/></svg></div>');
  292. var content = $('<div id="gm-content"></div>');
  293. var tips = $('<div class="tip" style="display:none;">\u957f\u6309\u62d6\u62fd</div>');
  294. var scrollText = $('<marquee>').text('\u4e7e\u5764\u672a\u5b9a\uff0c\u4f60\u6211\u7686\u662f\u9ed1\u9a6c----\u4f5c\u8005\uff1a\u897f\u74dc\u8981\u5927\u7684\uff08\u611f\u8c22\u652f\u6301\uff01\uff09').css({
  295. 'position': 'absolute',
  296. 'top': '15%',
  297. 'left': '50%',
  298. 'transform': 'translate(-50%, -50%)',
  299. 'width': '90%',
  300. 'height': '25px',
  301. 'font-size': '16px',
  302. 'line-height': '1.5',
  303. 'white-space': 'nowrap'
  304. }).appendTo(content);
  305. // var ddds1 = $('<div style="position: absolute;top: 85%;width:90%;height:10%;padding: 3px;background: #ffedf0;border-radius: 5px;">\u70b9\u51fb\u542f\u52a8\uff1a<button id="beginExam" style="position: absolute;width:48px;right: 10px;background-color: #ffe5e5;border-radius: 4px;border-color: #ffc0c0;color: grey;">开始答题</button></div>');
  306. // var ddds5 = $('<div style="position: absolute;top: 35%;width:90%;height:10%;padding: 3px;background: #ffedf0;border-radius: 5px;">\u70b9\u51fb\u542f\u52a8\uff1a<button id="stopxg" style="position: absolute;width:48px;right: 10px;background-color: #ffe5e5;border-radius: 4px;border-color: #ffc0c0;color: grey;">暂停</button></div>');
  307. //var ddds2 = $('<div style="position: absolute;top: 85%;width:90%;height:10%;padding: 3px;background: #ffedf0;border-radius: 5px;">\u89c6\u9891\u500d\u901f\uff1a<button id="speedxg" style="position: absolute;width:48px;right: 10px;background-color: #ffe5e5;border-radius: 4px;border-color: #ffc0c0;color: grey;">X16</button></div>');
  308. ddds3 = $('<div id="message-container" style="position: absolute;display: grid;align-content: center;justify-content: center;top: 20%;width:94%;height:62%;max-height:62%;overflow-y:auto;padding: 3px;background: #ffffff;border-radius: 5px;"></div>');
  309. var ddds4 = $('<div style="position: absolute;top: 85%;width:94%;height:10%;padding: 3px;background: #ffedf0;border-radius: 5px;"><button id="delData" style="position: absolute;width:129px;right: 20px;background-color: #ffe5e5;border-radius: 4px;border-color: #ffc0c0;color: grey;">清空缓存</button></div>');
  310.  
  311. container.append(titleBar);
  312. // content.append(ddds1);
  313. // content.append(ddds5);
  314. //content.append(ddds2);
  315. content.append(ddds3);
  316. content.append(ddds4);
  317. container.append(content);
  318. container.append(maxButton);
  319. container.append(minimizeButton);
  320. $('body').append(container);
  321. $('body').append(tips);
  322.  
  323. GM_addStyle(`
  324. #gm-interface {
  325. position: fixed;
  326. top: 50%;
  327. left: 50%;
  328. border-radius: 5px;
  329. background-color: white;
  330. z-index: 9999;
  331. }
  332.  
  333. #gm-title-bar {
  334. padding: 5px;
  335. background-color: #ffc0c0;
  336. border: 1px solid black;
  337. border-radius: 5px;
  338. cursor: grab;
  339. }
  340.  
  341. #gm-minimize-button {
  342. position: absolute;
  343. top: 2px;
  344. right: 2px;
  345. width: 30px;
  346. height: 30px;
  347. border-radius: 5px;
  348. padding: 0;
  349. font-weight: bold;
  350. background-color: #ffc0c0;
  351. cursor: pointer;
  352. }
  353.  
  354. #gm-content {
  355. padding: 10px;
  356. border: 1px solid black;
  357. border-radius: 2px 2px 5px 5px;
  358. background-color: #ffe5e5;
  359. width: 400px;
  360. height: 300px;
  361. }
  362. .tip{
  363. font-family: "黑体";
  364. color: black;
  365. -webkit-transform: scale(0.8);
  366. position:absolute;
  367. padding: 6px 5px;
  368. background-color:#ffe8f0;
  369. border-radius: 4px;
  370. z-index: 9999;
  371. }
  372. `);
  373.  
  374. titleBar.on('mousemove',function(e){
  375. tips.attr("style", "display:black;");
  376. var top = e.pageY+5;
  377. var left = e.pageX+5;
  378. tips.css({
  379. 'top' : top + 'px',
  380. 'left': left+ 'px'
  381. });
  382. });
  383.  
  384. titleBar.on('mouseout',function(){
  385. tips.hide();
  386. });
  387.  
  388. titleBar.on('mousedown', function(e) {
  389. var startX = e.pageX - container.offset().left + window.scrollX;
  390. var startY = e.pageY - container.offset().top + window.scrollY;
  391.  
  392. $(document).on('mousemove', function(e) {
  393. e.preventDefault();
  394. var newX = e.pageX - startX;
  395. var newY = e.pageY - startY;
  396. container.css({ left: newX, top: newY });
  397. });
  398.  
  399. $(document).on('mouseup', function() {
  400. $(document).off('mousemove');
  401. $(document).off('mouseup');
  402. });
  403. });
  404.  
  405.  
  406. minimizeButton.on('click', function() {
  407. minimizeButton.attr("style", "display:none;");
  408. maxButton.attr("style", "display:black;");
  409. content.slideToggle(0);
  410. container.css({ width: 200 });
  411. });
  412.  
  413. maxButton.on('click', function() {
  414. minimizeButton.attr("style", "display:black;");
  415. maxButton.attr("style", "display:none;");
  416. content.slideToggle(0);
  417. container.css({ width: 422 });
  418. });
  419.  
  420. ddds3.on('mousewheel', function(event) {
  421. event.preventDefault();
  422. var scrollTop = ddds3.scrollTop();
  423. ddds3.scrollTop(scrollTop + event.originalEvent.deltaY);
  424. });
  425.  
  426. $("#delData").on('click',function(){
  427. ddds3.children().remove();
  428. GM_deleteValue('courseIndex');
  429. addMessage("已清空缓存");
  430. });
  431.  
  432. addMessage = function(message){
  433. if (ddds3.children().length >= 15) {
  434. ddds3.children().first().remove();
  435. }
  436. var messageElement = $('<div class="message"></div>').text(message).css({
  437. 'margin-bottom': '10px'
  438. }).appendTo(ddds3);
  439. }
  440.  
  441. }
  442.  
  443. function getAnswer(){
  444. let oldData = GM_getValue('mhtAnswerList');
  445. if (Array.isArray(oldData)) {
  446. return oldData;
  447. }
  448. return [];
  449. }
  450.  
  451. function saveAnswer(answer_key,answer){
  452. let mhtAnswerList = getAnswer();
  453. let juge = mhtAnswerList.some(obj => obj.hasOwnProperty(answer_key));
  454.  
  455. if (juge) {
  456. addMessage("该答案已存在...");
  457. console.log("该答案已存在");
  458. return false;
  459. }
  460.  
  461. let tempMap = {};
  462. tempMap[answer_key] = answer;
  463.  
  464. mhtAnswerList.push(tempMap);
  465.  
  466. // console.log(mhtAnswerList);
  467.  
  468. GM_setValue('mhtAnswerList',mhtAnswerList);
  469.  
  470. return true;
  471. }
  472.  
  473. var answer_key
  474.  
  475. panel();
  476. addMessage("\u002d\u002d\u002d\u002d\u6b63\u5728\u542f\u52a8\uff0c\u8bf7\u7a0d\u540e\u002e\u002e\u002e\u002d\u002d\u002d\u002d");
  477. if(!GM_getValue('aotuTest')){
  478. GM_setValue('aotuTest',false);
  479. }else{
  480. $("#btnAotu").text("自动答题:开启");
  481. }
  482.  
  483. function tipsWin(){
  484. return new Promise((resolve, reject) => {
  485.  
  486. var popup = document.createElement('div');
  487. popup.id = 'customPopup';
  488. popup.style.display = 'none';
  489. popup.style.position = 'fixed';
  490. popup.style.top = '50%';
  491. popup.style.left = '50%';
  492. popup.style.transform = 'translate(-50%, -50%)';
  493. popup.style.backgroundColor = '#fff';
  494. popup.style.padding = '20px';
  495. popup.style.border = '1px solid #ccc';
  496. popup.style.boxShadow = '0 2px 4px rgba(0, 0, 0, 0.2)';
  497. popup.style.zIndex = '9999';
  498. popup.innerHTML = `
  499. <p id="timeCount">5秒后执行脚本?</p>
  500. <button id="confirmButton">是</button>
  501. <button id="cancelButton">否</button>
  502. `;
  503.  
  504. document.body.appendChild(popup);
  505.  
  506. var confirmButton = document.getElementById('confirmButton');
  507. var cancelButton = document.getElementById('cancelButton');
  508. var confirmed = false;
  509. let juNext = false;
  510.  
  511. popup.style.display = 'block';
  512.  
  513. confirmButton.addEventListener('click', function() {
  514. confirmed = true;
  515. closePopup();
  516. resolve(false);
  517. });
  518.  
  519. cancelButton.addEventListener('click', function() {
  520. ddds3.children().remove();
  521. addMessage("刷新页面即可重启");
  522. confirmed = true;
  523. closePopup();
  524. resolve(true);
  525. });
  526.  
  527. function ju(time){
  528. if(!confirmed){
  529. if(time < 1){
  530. popup.innerHTML = ` <p>时间到了! 脚本启动.</p>`;
  531. setTimeout(function() {
  532. closePopup();
  533. resolve(false);
  534. }, 1000);
  535. }
  536. else{
  537. document.getElementById('timeCount').innerText = time+'秒后执行脚本?';
  538. }
  539. setTimeout(function(){
  540. ju(--time)
  541. },1000);
  542.  
  543. }
  544. }
  545.  
  546. ju(5);
  547.  
  548. function closePopup() {
  549. popup.style.display = 'none';
  550. }
  551. });
  552.  
  553. }
  554.  
  555. function getCourseIndex(){
  556. let oldData = GM_getValue('courseIndex');
  557. if (Array.isArray(oldData)) {
  558. return oldData;
  559. }
  560. return [];
  561. }
  562.  
  563. function setCourseIndex(indexList){
  564.  
  565. GM_setValue('courseIndex',indexList);
  566.  
  567. return true;
  568. }
  569.  
  570. var wait = null;
  571. var overlay;
  572.  
  573. // 手动启动定时器
  574. function startTimer() {
  575. wait = setInterval(function (){
  576. ddds3.children().first().remove();
  577. if(window.location.href.split('?')[0] === 'https://ifang.hnteacher.net/HTML/WorkShops/workshop-courses.html'){
  578. addMessage("选课页");
  579. saveHomeUrl();
  580. tipsWin().then((result) => {
  581. if(!result){
  582. setTimeout(function(){
  583. addMessage("启动");
  584. allCours = document.querySelector("#courseList").childElementCount;
  585. if(allCours <= 0){
  586. addMessage("无待学课程");
  587. stopTimer();
  588. return;
  589. }
  590.  
  591. if(getCourseIndex()[0] === 'x'){
  592. addMessage("课程学习完毕,清除缓存刷新即可重启");
  593. return;
  594. }
  595. else if(getCourseIndex().length < 1){
  596. addMessage("新记录");
  597. let indexList = [];
  598. for(let i=0;i<allCours;i++){
  599. indexList.push(i);
  600. }
  601. setTimeout(function(){
  602. setCourseIndex(indexList);
  603. xuanKe(0,allCours);
  604. },1000);
  605. }
  606. else{
  607. addMessage("读取记录");
  608. xuanKe(0,allCours);
  609. }
  610.  
  611. },1000);
  612. }else{
  613. addMessage("取消");
  614. }
  615. });
  616.  
  617. }
  618. else if(window.location.href.split('?')[0] === 'https://ifang.hnteacher.net/HTML/WorkShops/workshop-course-details.html'){
  619. addMessage("章节列表");
  620. saveChapterUrl();
  621. tipsWin().then((result) => {
  622. if(!result){
  623. setTimeout(function(){
  624. addMessage("启动");
  625. chapterCount = document.querySelector("#courseList").childElementCount;
  626.  
  627. search();
  628. },1000);
  629. }else{
  630. addMessage("取消");
  631. }
  632. });
  633. }
  634. else if(window.location.href.split('?')[0] === 'https://ifang.hnteacher.net/HTML/WorkShops/workshop-course-play.html'){
  635. addMessage("学习页");
  636.  
  637. tipsWin().then((result) => {
  638. if(!result){
  639. setTimeout(function(){
  640. addMessage("启动");
  641. let cTime = parseInt(document.querySelector("#_ctime").innerText) + 2;
  642. listenTime(cTime);
  643. },1000);
  644. }else{
  645. addMessage("取消");
  646. }
  647. });
  648. }
  649. else{
  650. addMessage("请先前往选课界面");
  651. addMessage("tips:");
  652. addMessage("选课界面若无自动跳转,请检查浏览器地址栏");
  653. addMessage("提示选择允许跳转与重定向");
  654. }
  655. stopTimer();
  656. }, 100);
  657. }
  658.  
  659. // 手动停止定时器
  660. function stopTimer() {
  661. clearInterval(wait);
  662. }
  663.  
  664. startTimer();
  665.  
  666. function toggleOverlay(show) {
  667. if (show) {
  668. overlay = document.createElement('div');
  669. overlay.style.position = 'fixed';
  670. overlay.style.top = '0';
  671. overlay.style.left = '0';
  672. overlay.style.width = '100%';
  673. overlay.style.height = '100%';
  674. overlay.style.backgroundColor = 'rgba(0, 0, 0, 0.5)';
  675. overlay.style.zIndex = '9999';
  676.  
  677. overlay.addEventListener('click', function(event) {
  678. event.stopPropagation();
  679. event.preventDefault();
  680. });
  681.  
  682. document.body.appendChild(overlay);
  683. } else {
  684. if (overlay) {
  685. overlay.parentNode.removeChild(overlay);
  686. overlay = null;
  687. }
  688. }
  689. }
  690.  
  691. function reloadPage(){
  692. setInterval(function (){
  693. window.location.reload()
  694. },1000*60*33);
  695. }
  696.  
  697. var cIndex = 0;
  698. function xuanKe(index,count){
  699. if(index < count){
  700. if(!document.querySelector("#courseList").getElementsByTagName('input')[0].checked){
  701. document.querySelector("#courseList").getElementsByTagName('input')[index].click();
  702.  
  703. setTimeout(function(){
  704. cLCount = document.querySelector("#courseList2").childElementCount;
  705. cIndex = index;
  706. xuanKeTow(0,cLCount);
  707. },1000);
  708. }else{
  709. addMessage("无需选课");
  710. tempTime = 0;
  711. setTimeout(function(){
  712. xuanKe(++cIndex,allCours);
  713. },1000);
  714. }
  715. }
  716. else{
  717. addMessage("已完成选课course");
  718. setTimeout(function(){
  719. let oldCourseIndex = getCourseIndex();
  720. console.log(oldCourseIndex);
  721. let a = oldCourseIndex[0];
  722. oldCourseIndex.shift();
  723.  
  724. if(oldCourseIndex.length < 1){
  725. oldCourseIndex.push('x');
  726. }
  727.  
  728. console.log(a);
  729. setCourseIndex(oldCourseIndex);
  730. if(a >= count || a === undefined || a === 'x'){
  731. addMessage("请清空缓存刷新重启");
  732. return;
  733. }
  734. document.querySelector("#courseList").children[a].querySelector('a').click();
  735. },1000);
  736. }
  737. }
  738.  
  739. var cLCount = 0;
  740. var tempTime = 0;
  741. function xuanKeTow(index,count){
  742. if(index < count){
  743.  
  744. if(tempTime < 13.4){
  745. tempTime = tempTime + parseFloat(document.querySelector("#courseList2").children[index].getElementsByTagName('span')[0].innerText.split(':')[3]);
  746.  
  747. document.querySelector("#courseList2").children[index].getElementsByTagName('input')[0].click();
  748. addMessage("已选:"+tempTime+"小时");
  749. xuanKeTow(++index,count)
  750. }
  751. else{
  752. addMessage("已完成选课time,");
  753.  
  754.  
  755. document.querySelector("#btn_sub").click();
  756. tempTime = 0;
  757. setTimeout(function(){
  758. xuanKe(++cIndex,allCours);
  759. },1000);
  760. }
  761. }
  762. else{
  763. addMessage("已完成选课count");
  764.  
  765. document.querySelector("#btn_sub").click();
  766. tempTime = 0;
  767. setTimeout(function(){
  768. xuanKe(++cIndex,allCours);
  769. },1000);
  770. }
  771. }
  772.  
  773. var min = 0;
  774. function listenTime(ctime){
  775. min = parseInt(document.querySelector("#min").innerText);
  776. // addMessage(ctime+"/"+min);
  777. if(ctime <= min){
  778. addMessage("学习已达标");
  779. setTimeout(function(){
  780. window.open(getChapterUrl(),'_self');
  781. },3000);
  782. }
  783. else{
  784. addMessage("学习未达标");
  785. setTimeout(function(){
  786. listenTime(ctime)
  787. },1000 * 30);
  788. }
  789. }
  790.  
  791. })();

QingJ © 2025

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