Show random verification time

show random verification time

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name                Show random verification time
// @namespace           https://greatest.deepsurf.us/users/821661
// @match               https://*.superau.la/*
// @grant               none
// @version             1.0
// @require             https://update.greatest.deepsurf.us/scripts/526417/1540623/USToolkit.js
// @author              hdyzen
// @description         show random verification time
// @license             GPL-3.0-only
// ==/UserScript==

function waitElement(selector) {
    return new Promise((resolve, reject) => {
        const callback = () => {
            const target = document.querySelector(selector);
            if (target) resolve(target);
        };

        const observer = new MutationObserver(callback);

        observer.observe(document.body, {
            childList: true,
            subtree: true,
        });
    });
}

async function init() {
    try {
        const dataFutura = new Date(JSON.parse(localStorage.getItem("db-v6")).CurrentSession.AulaEmAndamento.ValidacaoAleatoria.CandidatoConvocacoes[0].HoraConvocacaoAleatoria);
        const restante = await waitElement(".chat__header__title:has(> :nth-child(2))");
        const aleatoria = document.createElement("span");
        aleatoria.style.marginLeft = "6px";
        restante.appendChild(aleatoria);

        const intervalo = setInterval(() => {
            const agora = new Date();
            const tempoRestante = dataFutura - agora;

            if (tempoRestante <= 0) {
                clearInterval(intervalo);
                console.log("A data futura foi alcançada!");
            } else {
                const segundos = Math.floor((tempoRestante / 1000) % 60);
                const minutos = Math.floor((tempoRestante / (1000 * 60)) % 60);
                const horas = Math.floor((tempoRestante / (1000 * 60 * 60)) % 24);

                aleatoria.textContent = `• ${horas}h${minutos}m${segundos}s`;
                // console.log(`${horas}h${minutos}m${segundos}s`);
            }
        }, 1000);
    } catch (error) {
        console.error("Error: ", error);
    }
}
init();