Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save martonmiklos/5c4a517cc7e110e31c5b77343301feb9 to your computer and use it in GitHub Desktop.
Save martonmiklos/5c4a517cc7e110e31c5b77343301feb9 to your computer and use it in GitHub Desktop.
/*
I could not get the Firefox to remember my credentials on this freakin website, so I created this
greasemonkeyscript to bypass that.
Use only on computers where you have safety protections before the browser access...
*/
// ==UserScript==
// @name MVMNext autologin
// @version 1
// @grant none
// @include https://www.mvmnext.hu/foldgaz/*
// ==/UserScript==
window.addEventListener('load', function() {
document.getElementById('loginbox_username').value = "meszaros";
document.getElementById('loginbox_password').value = "alegokosabb";
document.getElementById('smallloginbox_username').value = "meszaros";
document.getElementById('smallloginbox_password').value = "alegokosabb";
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment