Greasy Fork is available in English.

Autologin Bimay

try to take over the world!

// ==UserScript==
// @name         Autologin Bimay
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://binusmaya.binus.ac.id/login/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("#login > form > div.user-input > label > input").val(localStorage.getItem('usernameBimay'));
    $("#login > form > p:nth-child(2) > span > input[type=password]").val(localStorage.getItem('passwordBimay'));
    $("#login > form > p:nth-child(6) > input").click();
    // Your code here...
})();