Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RichardHum/7e0e404ce5d7127d2386 to your computer and use it in GitHub Desktop.
Save RichardHum/7e0e404ce5d7127d2386 to your computer and use it in GitHub Desktop.
By default, Tangerine bank doesn't hide your secret question answer, this hides it.
// ==UserScript==
// @name Hide Secret Question Tangerine
// @namespace tangerine.ca
// @description Hide the secret question answer field on Tangerine
// @include https://secure.tangerine.ca/web/Tangerine.html?command=displayChallengeQuestion
// @version 1
// @grant none
// ==/UserScript==
var field = document.getElementsByTagName("input");
for (var i=0;i<field.length;i++)
{
if (field[i].id == "Answer")
{
field[i].type = "password";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment