Created
February 21, 2021 11:17
-
-
Save martonmiklos/5c4a517cc7e110e31c5b77343301feb9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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