Using Tampermonkey to fix HSBC online banking

Recently, I wrote about some of the poor user experience encountered when using HSBC’s online banking.

Today, I am going to show you how to fix some of it. These instructions are for users of the Google Chrome web browser. If you use Mozilla Firefox, you can probably achieve a similar effect using Greesemonkey.

Tampermonkey is a browser add-on that allows you to run custom user scripts on existing websites. The first thing you will need to do is install it.

Once you have done that, the Tampermonkey icon will appear in your browser. Click this and when the menu appears select “Add a new script…”. Wait for the page to load, then copy and paste the following in:

// ==UserScript==
// @name       HSBC online banking
// @namespace  https://www.business.hsbc.co.uk/
// @version    0.1
// @description  Improves HSBC's online banking
// @match      https://www.business.hsbc.co.uk/*
// @copyright  2014
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

$('#benSortCode').attr('size', '8');
$('#benAccountNumber').attr('size', '10');

This code will then be run every time you access a HSBC online banking page. So, as if by magic, when you try and create a new payee, the boxes will be big enough:

hsbc-online-banking-fixed

Timeline

Newsletter

Don't have time to check my blog? Get a weekly email with all the new posts. This is my personal blog, so obviously it is 100% spam free.

Metadata

Tags: , , ,

This entry was posted on Thursday, July 24th, 2014 at 11:11 am and is filed under Tech. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.