TreasuryDirect Copypaste

Allow credentials to be pasted from a password manager into the TreasuryDirect login form.

// ==UserScript==
// @name         TreasuryDirect Copypaste
// @namespace    https://www.treasurydirect.gov/RS/PW-Display.do
// @version      0.2
// @description  Allow credentials to be pasted from a password manager into the TreasuryDirect login form.
// @author       David Carter
// @license      MIT
// @match        https://www.treasurydirect.gov/RS/PW-Display.do
// @icon         https://www.google.com/s2/favicons?sz=64&domain=treasurydirect.gov
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.querySelector("input[class='pwordinput']").removeAttribute("readonly");
})();