Greasy Fork is available in English.

Auto Login Exam Apps

try to take over the world!

// ==UserScript==
// @name         Auto Login Exam Apps
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://exam.apps.binus.ac.id/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("#Username").val(localStorage.getItem('usernameBimay'));
    $("#Password").val(localStorage.getItem('passwordBimay'));
    $("#btnSubmit").click();
    // Your code here...
})();