Greasy Fork is available in English.

雨课堂自动刷未读PPT

一款可以支持将未读的PPT刷下去的插件!

// ==UserScript==
// @name         雨课堂自动刷未读PPT
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  一款可以支持将未读的PPT刷下去的插件!
// @author       高蚁开发组GAOYI DevTeam
// @match        https://www.yuketang.cn/v2/web/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=csdn.net
// @license	 BSD 2-Clause
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function () {
        var elements = document.querySelectorAll('.thumbImg-container');
        var index = 0;
        function simulateClick() {
            if (index < elements.length) {
                var element = elements[index];
                element.click();
                console.log("已点击按钮")
                index++;
                setTimeout(simulateClick, 2000); 
            }
        }
        simulateClick();
    }, 5000);
    // Your code here...
})();