TreasuryDirect Password Typing Enabler

Don't use their thingy lol

// ==UserScript==
// @name         TreasuryDirect Password Typing Enabler
// @namespace    TreasuryDirect Password Typing Enabler
// @version      0.1
// @license      GPL
// @description  Don't use their thingy lol
// @author       You
// @match        https://www.treasurydirect.gov/RS/PW-Display.do
// @icon         https://www.treasurydirect.gov/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const pwordInput = document.querySelector('.pwordinput');
    for (const attribute of ['autocomplete', 'readonly']){
        pwordInput.removeAttribute(attribute);
    };
    pwordInput.style.backgroundColor = '#fff';
})();