Greasy Fork

2023年天津市中小学教师继续教育自动刷课脚本

自动打分,自动下一节

目前为 2023-01-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         2023年天津市中小学教师继续教育自动刷课脚本
// @namespace    JBren
// @version      0.2
// @description  自动打分,自动下一节
// @author       JBren
// @icon         https://srt-read-online.3ren.cn/basebusiness/headimg/20210512/1620805976782CrkCSwcFlY-32.png
// @require      https://code.jquery.com/jquery-1.12.4.min.js
// @grant        none
// @match        *://*tjgl.yanxiu.com/*
// ==/UserScript==
$(document).ready(function() {
    //添加浮动窗口
    $("body").append('<div style=\"z-index: 9999; position: fixed ! important; right: 0px; top: 0px;\"><div style=\"width:150px;height: 100px;background-color: rgb(11, 11, 54);color: rgb(207, 245, 170);\">阿4监控弹窗<p id=\"JianCe\" style=\"color: rgb(223, 71, 71);\">0</p></div></div>')
    //1秒执行一次
    var cishu = 1;
    var pingjiadisplay;
    var id = setInterval(function(){pingjia();},1000)

    //查找评价方法
    function pingjia(){
        $("#JianCe").text(cishu);
        cishu++;
        //查找评价窗口
        pingjiadisplay = $(".scoring-wrapper").css('display');
        if (pingjiadisplay != 'none'){
            sleep(1000);
            //模拟点击4星
            $(".rate-item").last().click()//点击最后星星
            sleep(1000);
            //模拟点击提交
            $(".commit button span").click()//点击提交
            console.log("点评一次")
        }
        var checkEnd = $(".ended-mask").css('display');
        if (checkEnd != 'none'){
            //判断是否有下一节
            if( $(".btns p").length==1){
                alert('播放结束');
                clearInterval(id);
            }
            else{
                $(".btns p").click()
                console.log("点击下一节")               
            }

        }
    }
});