Skip to content

Instantly share code, notes, and snippets.

@barszcz
Created April 15, 2022 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barszcz/5240ac3422728e042fac65e266448e31 to your computer and use it in GitHub Desktop.
Save barszcz/5240ac3422728e042fac65e266448e31 to your computer and use it in GitHub Desktop.
TreasuryDirect Password Entry Userscript
// ==UserScript==
// @name TreasuryDirect Password Entry
// @namespace https://barsz.co
// @version 0.1
// @description Allows a user to type/paste/autofill their TreasuryDirect password rather than having to use the onscreen keyboard.
// @author Jake Barszcz
// @match https://www.treasurydirect.gov/RS/PW-Display.do
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelector(".pwordinput").removeAttribute("readonly")
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment