Greasy Fork is available in English.
Automate course learning on enaea.edu.cn with 4X video speed control
< 脚本 EnaeaAssistant-学习公社全自动4X速 的反馈
函数function closePausePopup()的选择器失效了,导致弹出窗口暂停无法自动继续。我稍微改了下: //let continueButton = document.querySelector("button:contains('Continue Learning')"); let continueButton = document.querySelector("button"); if (continueButton.textContent.includes("继续学习")) { continueButton.click(); }
登录以发布留言。
函数function closePausePopup()的选择器失效了,导致弹出窗口暂停无法自动继续。
我稍微改了下:
//let continueButton = document.querySelector("button:contains('Continue Learning')");
let continueButton = document.querySelector("button");
if (continueButton.textContent.includes("继续学习")) {
continueButton.click();
}