Fix Meridian Credit Union page title for KeePass2

Adds a page title if necessary to ensure external password managers can identify the page

As of 2016-11-14. See the latest version.

Author
ssokolow
Ratings
0 0 0
Version
2
Created
2016-11-11
Updated
2016-11-14
License
N/A
Applies to

Meridian Credit Union's login page doesn't set a title. This prevents external password managers like KeePass2 from being able to match it for hotkey-based auto-type.

This script corrects that in a future-proof way by setting a page title if none is set.

As this script will run on your financial institution's website, I've made it as simple as absolutely possible (three lines, including closing curly brace, and no @requires) so anyone who knows how to install a Greasemonkey script should be able to audit it.

Please click the Code tab and verify the following before installation:

  1. The ==UserScript== block at the top contains no @require lines.
  2. The code consists of:
    1. An if statement checking for !document.title (no document title)
    2. A line to set document.title
    3. A closing curly brace.