Skip to content

Instantly share code, notes, and snippets.

@ObjectBoxPC
Last active October 23, 2023 09:02
Show Gist options
  • Save ObjectBoxPC/1869cfd1f0a9d92383b09b34a2813fb8 to your computer and use it in GitHub Desktop.
Save ObjectBoxPC/1869cfd1f0a9d92383b09b34a2813fb8 to your computer and use it in GitHub Desktop.
Userscript to enable direct password input on TreasuryDirect login
// ==UserScript==
// @name Enable Direct Password Input on TreasuryDirect
// @version 1
// @include https://www.treasurydirect.gov/*
// @grant none
// ==/UserScript==
document.querySelector('input.pwordinput').readOnly = false;
@ObjectBoxPC
Copy link
Author

This is no longer needed as of May 2023. TreasuryDirect removed the virtual keyboard which was previously used for password input: https://www.bogleheads.org/forum/viewtopic.php?t=403677

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment