Enroll Class

11:49:50 9/12/2024

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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        Enroll Class
// @namespace   Enroll Class
// @match       https://fap.fpt.edu.vn/FrontOffice/MoveSubject.aspx*
// @grant       none
// @version     1.1
// @author      Eric Anti Code
// @description 11:49:50 9/12/2024
// ==/UserScript==

(function() {
    'use strict';

    const desiredText = "IA1702";
    const selectElement = document.getElementById("ctl00_mainContent_dllCourse");
    const saveButton = document.getElementById("ctl00_mainContent_btSave");

    if (selectElement) {
        if (selectElement.value === "49447") {
            saveButton.click();
            setTimeout(() => {
                location.reload();
            }, 1000);
        } else {
            for (let option of selectElement.options) {
                if (option.text === desiredText) {
                    selectElement.value = option.value;
                    const event = new Event('change', { bubbles: true });
                    selectElement.dispatchEvent(event);
                    break;
                }
            }

            setTimeout(() => {
                saveButton.click();
            }, 2000);
        }
    }

  function checkForError() {
        const errorMessage = document.querySelector('#cf-error-details h1');
        if (errorMessage && errorMessage.textContent.includes("Web server is returning an unknown error")) {
            location.reload(); 
        }
    }

  function checkForAlert() {
        const originalAlert = window.alert;
        window.alert = function(message) {
            location.reload();
            originalAlert(message);
        };
    }

    checkForAlert();

    setInterval(checkForError, 4000);
})();