See the new user script: http://userscripts.org/scripts/show/9832
// ==UserScript==
// @name HSBC Password Easyfier
// @namespace hsbc
// @description Lets you input your Security Key with your keyboard
// @include https://www.us.hsbc.com/*
// ==/UserScript==
window.addEventListener('load', init, false);
function init() {
var oldPassInput = document.getElementById("password");
if(undefined != oldPassInput){
oldPassInput.setAttribute("onkeydown", function(e){})
}
}