QuangDung / AutoĐKHọcPhần

// ==UserScript==
// @name         AutoĐKHọcPhần
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Cố gắng đăng kí học phần!
// @author       QuangDung
// @facebook     https://www.facebook.com/DeffSu
// @include      http://online*.buh.edu.vn
// @include      http://online*.buh.edu.vn*
// @include      http://online*.buh.edu.vn/
// @include      http://online*.buh.edu.vn/Default.aspx
// @include      http://online*.buh.edu.vn/Default.aspx*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// @updateURL    https://openuserjs.org/meta/QuangDung/AutoĐKHọcPhần.meta.js
// ==/UserScript==

var id = ""; //mssv
var pass = ""; //password

var mWish = ["CTT330", "CTT124", "CTT478", "CTT634", "CTT633", "CTT538", "CTT474"]; //danh sách mã học phần muốn ĐK
//Ví dụ, vế mã học phần lên xem danh sách môn học để biết chi tiết
//var mWish = ["CTT506", "CTT522", "CTT124", "CTT504", "CTT524"];

function login() {
    $("#ContentPlaceHolder1_ctl00_ctl00_txtUserName").val(id); //mssv
    $("#ContentPlaceHolder1_ctl00_ctl00_txtPassword").val(pass); //pass
    console.log("Điền thông tin xong");
    $('#ContentPlaceHolder1_ctl00_ctl00_btLogin').click();
    console.log("Đang đăng nhập!");
}
(function() {
    'use strict';
    var mWeb = document.URL;
    console.log(mWeb);
    var check = $(document).text();
    if (check === "The service is unavailable.") {
        location.assign("/");
        return;
    }
    if (mWeb.match(/Default.aspx/) || mWeb.match()) {
        $(document).ready(function() {
            login();
            $('#ContentPlaceHolder1_ctl00_ctl00_lnkDangKy').click();
            $('#ContentPlaceHolder1_ctl00_ctl00_ctl00_btSubmit').click();
        });
    }else{
        alert('Đậu mé lỗi rồi anh Dũng!!! anh code như sịt');
    }
})();