utahcon / HPE Logon Fix

// ==UserScript==
// @name         HPE Logon Fix
// @namespace    http://utahcon.com/
// @version      0.2
// @description  HPE Logon doesn't allow you to paste passwords, this fixes that issue.
// @author       Utahcon
// @match        https://login-iam.ext.hpe.com/*
// @updateURL    https://openuserjs.org/meta/utahcon/HPE_Logon_Fix.meta.js
// @grant        none
// ==/UserScript==

(function () {
    'use strict';
    // Your code here...
    $("#password")
        .unbind("click")
        .unbind("keydown")
        .unbind("paste")
        .unbind("input")
        .removeAttr("onpaste")
        .removeAttr("autocomplete");
})();