刷课脚本请大佬修缮下!!

查看 47|回复 6
作者:假圣人   
请大佬完善下这段代码,这是刷网课的,但是不怎么好用,不能自动播放下个视频。
// ==UserScript==
// @name        江西干部学院自动刷课脚本
// @namespace   江西干部学院自动刷课脚本
// @match       https://www.jxgbwlxy.gov.cn/student/course_my*.do*
// @match       https://www.jxgbwlxy.gov.cn:8443/course/*/index.htm
// @grant       none
// @version     2.1
// @AuThor      You
// @license     MIT
// @description 把页面挂在“我的必修课”或“我的选修课”即可,可自动完成相应页面的课程学习
// @downloadURL https://update.greasyfork.org/scripts/517798/%E6%B1%9F%E8%A5%BF%E5%B9%B2%E9%83%A8%E5%AD%A6%E9%99%A2%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE%E8%84%9A%E6%9C%AC.user.js
// @updateURL https://update.greasyfork.org/scripts/517798/%E6%B1%9F%E8%A5%BF%E5%B9%B2%E9%83%A8%E5%AD%A6%E9%99%A2%E8%87%AA%E5%8A%A8%E5%88%B7%E8%AF%BE%E8%84%9A%E6%9C%AC.meta.js
// ==/UserScript==
(function () {
    if (window.location.href.indexOf("https://www.jxgbwlxy.gov.cn/student/course_my") !== -1) {
        setInterval(() => {
            location.reload();
        }, 5  *60* 1000);
        setInterval(() => {
            document.querySelector('div.rt.btn_group >  input[type=button]').click()
        }, 2 * 60* 1000);
    } else if (window.location.href.indexOf("https://www.jxgbwlxy.gov.cn:8443/course/") !== -1) {
        setInterval(() => {
            if (document.querySelector('div.continue').style.display !== 'none') {
                const video = document.getElementById("course_player");
                video.muted = true;
                video.playbackRate = 2;
                document.querySelector('div.user_choise').click();
            }
            const video = document.getElementById("course_player");
            video.muted = true;
            video.playbackRate = 2;
            document.getElementById("course_player").play();
        }, 5000);
    }
})();

大佬, 脚本

lyh7733   

删除评论,刚才发的脚本可能是付费的,抱歉。看脚本评论有人说要付费,自己油猴搜一下吧,刷课脚本挺多的。
xbang   

刷这个可以用填表,搭配多开,可以很多。
假圣人
OP
  


xbang 发表于 2024-11-22 08:24
刷这个可以用填表,搭配多开,可以很多。

好像不能躲开,这边登陆,那边就掉了
xbang   


假圣人 发表于 2024-11-22 08:32
好像不能躲开,这边登陆,那边就掉了

多开是开很多号。
tantanxin147   

没有号。没法试
FCGkitty   

你要提供账号啊,不然咋测试
您需要登录后才可以回帖 登录 | 立即注册

返回顶部