// @match https://qna.habr.com
// @grant none
// @version 1.0
// @run-at document-end
// ==/UserScript==
if (location.hostname === 'qna.habr.com') {
let cnt;
function changeTimeout() {
cnt = 40 + Math.floor(Math.random() * 4);
console.log(`Send time at ${cnt}s`);
}
changeTimeout();
setInterval(() => {
let btn = document.querySelector('.tutorial-task-page__submit')
let t = document.querySelector('.tutorial-task-page__time');
if (t && t.textContent.slice(2) == cnt) {
changeTimeout();
btn.click();
}
}, 500);
}