cq_auto_script

private script

Από την 06/08/2022. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         cq_auto_script
// @namespace    skeleton
// @version      2.0.0
// @description  private script
// @author       skeleton
// @match        *://*.chaoxing.com/space/*
// @run-at       document-end
// @grant        unsafeWindow
// @license MIT
// ==/UserScript==
 
 
(function() {
 
    'use strict';
    setTimeout(()=>{
        const win = unsafeWindow.document.querySelector('iframe').contentWindow
        win.getStudied?.()

        setTimeout(()=>{
            const count = new Date().getDate() - new Date('2022/8/6').getDate()
            win.document.querySelectorAll('.w_cournopadd .w_cour_txt a')[count]?.click()
        },10000)
    },5000)
})();