My LastPass password generation config for quickly generating strong passwords
// ==UserScript==
// @name LastPass password generation config
// @namespace http://popeen.com
// @version 0.1
// @description My LastPass password generation config for quickly generating strong passwords
// @author Popeen
// @include https://lastpass.com/generatepassword.php
// @grant none
// ==/UserScript==
document.getElementById('length').value = '128';
document.getElementById('mindigits').value = '15';
document.getElementById('special').checked = true;
dogenerate();