NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name AUnicaLogin
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author Filippo Pagano
// @match https://aunicalogin.polimi.it/aunicalogin/*
// @grant none
// ==/UserScript==
$( document ).ready(function() {
$('#RESTA_CONNESSO').prop('checked', true);
$('#login').val("CODICEPERSONA");
$('#password').focus().select();;
});