Skip to content

Instantly share code, notes, and snippets.

@henrik
Created July 23, 2010 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrik/487186 to your computer and use it in GitHub Desktop.
Save henrik/487186 to your computer and use it in GitHub Desktop.
Firefox Greasemonkey script to autocomplete and autologin with Basefarm VPN.
// ==UserScript==
// @name Basefarm VPN autocomplete and autologin
// @namespace http://henrik.nyh.se
// @description Description.
// @include https://ssl-vpn.sth.basefarm.net/+CSCOE+/logon.html
// ==/UserScript==
var form = document.getElementById('unicorn_form');
var pw = document.getElementById('password_input');
pw.setAttribute('autocomplete', 'on');
setTimeout(function() { if (pw.value) form.submit(); }, 0);
@Raziuddin78
Copy link

Login script

@Raziuddin78
Copy link

Speed page script

@Raziuddin78
Copy link

Register script

@Raziuddin78
Copy link

After 12 o'clock login script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment