学堂在线刷课脚本

学堂在线刷课脚本,自动静音和二倍速,只有刷课的功能。

  1. // ==UserScript==
  2. // @name 学堂在线刷课脚本
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 学堂在线刷课脚本,自动静音和二倍速,只有刷课的功能。
  6. // @author Saafo
  7. // @license LGPL-3.0-only
  8. // @match https://next.xuetangx.com/learn/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13.  
  14. function sleep (time) {
  15. return new Promise((resolve) => setTimeout(resolve, time));
  16. }
  17. (async function() {
  18. 'use strict';
  19. await sleep(1000);
  20. var courses = document.getElementsByClassName("noScore");
  21. var currentCourse = "";
  22. var j = 0;
  23. for(j = 0;j< courses.length;j++){
  24. if(courses[j].parentElement.getAttribute("class") == "title active"){
  25. currentCourse = courses[j];
  26. break;
  27. }
  28. }
  29. await sleep(2000);
  30. var isVideo = false;
  31.  
  32. for(let i = 0;i< 50000;i++){
  33. if(document.getElementsByClassName("xt_video_player_common_icon").length != 0){
  34. document.getElementsByClassName("xt_video_player_common_icon")[0].click();//静音
  35. document.getElementsByClassName("xt_video_player_common_list")[0].children[0].click();//二倍速
  36. isVideo = true;
  37. break;
  38. }
  39. }
  40. if(!isVideo){
  41. courses[j+1].click();//跳到下一个视频
  42. await sleep(500);
  43. window.location.reload();
  44. }
  45.  
  46. if(currentCourse != ""){
  47. //开始等待
  48. var timeBlock = document.getElementsByClassName("xt_video_player_current_time_display")[0].textContent;
  49. var currentTimeRaw = timeBlock.split(' / ')[0];
  50. var timeLengthRaw = timeBlock.split(' / ')[1];
  51. var currentTime = (+currentTimeRaw.split(':')[0])*3600 + (+currentTimeRaw.split(':')[1])*60 + (+currentTimeRaw.split(':')[2]);
  52. var timeLength = (+timeLengthRaw.split(':')[0])*3600 + (+timeLengthRaw.split(':')[1])*60 + (+timeLengthRaw.split(':')[2]);
  53. await sleep((timeLength - currentTime)*500);
  54. courses[j+1].click();//跳到下一个视频
  55. console.log('开始刷课');
  56. await sleep(500);
  57. window.location.reload();
  58. }else{
  59. alert("出错,脚本已经停止运行。")
  60. }
  61. // Your code here...
  62. })();

QingJ © 2025

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