It seems that many schools are using the resources of the Superstar platform. However, one of the tedious tasks is to click the course directory one by one before there is a browser record. Otherwise, there is no corresponding score. After a brief look today, it is found that the record is submitted using ajax, and the ID of each course is self increasing, so you can write a js script to automatically handle it, In addition, the delayed execution code is added to prevent the system from detecting cheating, because the verification code may appear if you click too frequently.

The codes are as follows:

 (async function(){ /** *S Sleep duration, in seconds */ function sleep(s){ s = s || 0; s  = parseInt(s) * 1000; let now = +new Date(); let timer = null; return new Promise((resolve, reject)=>{ timer = setInterval(()=>{ if( now + s < +new Date()){ clearInterval(timer); resolve(true); } }, 10) }) } Var startid=151392235;//Course start ID for(let i=1; I<=100; i++) {//Number of cycles, 100 by default await sleep(2); //  Sleep for 2 seconds to prevent cheating detection javascript:getTeacherAjax('203992116','7984447',startid+i); Console. log ('Completed '+i+' times, and instantly reached the peak of life. Use the tutorial address: https://www.51it.wang/ll/1556 ') } })()

Tutorial:
1. Open the page as shown in the following figure, point to the first lesson, and then view the three values in the lower left corner, which can also be achieved by using the review element.

 Superstar learning platform one click to complete the account browsing task code

2. Fill in the code with 3 values in sequence, startid It is the third value, 1 and 2 correspond.

3. F12 Open the window, paste all codes, and press Enter.
 Superstar learning platform one click to complete the account browsing task code