資安素養闖關-自動按下繼續挑戰按鈕

自動按下頁面上的「繼續挑戰」按鈕

// ==UserScript==
// @name         資安素養闖關-自動按下繼續挑戰按鈕
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  自動按下頁面上的「繼續挑戰」按鈕
// @author       issac
// @match        *://isafeevent.moe.edu.tw/*
// @grant        none
// @license      GPL-3.0 License
// ==/UserScript==

(function() {
    'use strict';

    function clickContinueChallenge() {
        let btn = document.querySelector(".btnStartExam");
        if (btn) {

            btn.click();
        }
    }

    // 每隔 500 毫秒檢查一次,直到找到按鈕
    setInterval(clickContinueChallenge, 500);
})();